Skip to content

Merge branch 'main' of github.com:maxirmx/dkg-frontend #41

Merge branch 'main' of github.com:maxirmx/dkg-frontend

Merge branch 'main' of github.com:maxirmx/dkg-frontend #41

Workflow file for this run

name: Test workflow
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: npm
- name: Install dependencies
run: npm install
- name: Run linting
run: npm run lint
- name: Run tests
run: npm run test:unit