chore(deps): update typescript-eslint monorepo to v8 (major) - autoclosed #804
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: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: CI | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Prepare | |
run: npm run prepare | |
- name: Test | |
run: npm test | |
- name: Build examples | |
run: npm run build-examples |