root: add eslint CI Checks #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions | |
run-name: ${{ github.event.pull_request.title }} CI Checks | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize] | |
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 |