Skip to content

chore(deps-dev): bump @types/node from 22.7.7 to 22.8.1 (#616) #1374

chore(deps-dev): bump @types/node from 22.7.7 to 22.8.1 (#616)

chore(deps-dev): bump @types/node from 22.7.7 to 22.8.1 (#616) #1374

Workflow file for this run

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