Skip to content

add workflow to test and check the build #1

add workflow to test and check the build

add workflow to test and check the build #1

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Eslint
run: npm run lint
- name: Test
run: npm run test
- name: Compile and build
run: npm run build