Skip to content

fixed syntax errors in CI testing #2

fixed syntax errors in CI testing

fixed syntax errors in CI testing #2

Workflow file for this run

name: CI tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
name: Run ESLint and Jest testing
steps:
- uses: actions/checkout@v3
- uses: bahmutov/npm-install@v1
- run: npm run lint
- run: npm run test