Skip to content

chore: version packages (#38) #52

chore: version packages (#38)

chore: version packages (#38) #52

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "yarn"
- run: yarn install --immutable
- run: yarn format:check
- run: yarn lint
- run: yarn build
- run: yarn typecheck
- run: yarn test