chore(deps): update typescript-eslint monorepo to v8 (major) #152
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: Automated CI checks | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
install-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter (eslint) | |
run: npm run lint | |
- name: Run type check (typescript) | |
run: npm run typecheck | |
- name: Run tests (Jest) | |
run: npm test |