Skip to content

Update eslint and connect with prettier #5

Update eslint and connect with prettier

Update eslint and connect with prettier #5

Workflow file for this run

name: GitHub Actions
run-name: ${{ github.actor }}: CI Checks

Check failure on line 2 in .github/workflows/actions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/actions.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
on: [push]
jobs:
"run-unit-tests":
name: "Run unit tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Use node version"
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: "Install dependencies"
run: npm install
- name: Run tests
run: npm run test
"lint":
name: "Checking for linting errors"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Use node version"
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: "Install dependencies"
run: npm install
- name: Checking linter
run: npm run lint