chore(deps-dev): bump @types/node from 22.7.7 to 22.8.1 (#616) #1374
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: | |
- 18 | |
- 20 | |
- 22 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Setup Node.js v${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
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 |