chore(deps-dev): bump @typescript-eslint/parser from 6.7.2 to 6.7.5 #886
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: CI | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 20 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.js v${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: ${{ matrix.node }} | |
- name: Install deps | |
run: yarn | |
- name: Lint code | |
run: yarn lint | |
- name: Format code | |
run: yarn format:check | |
- name: Type check code | |
run: yarn typecheck | |
- name: Build package | |
run: yarn build |