Skip to content

fix(deps): pin dependencies #114

fix(deps): pin dependencies

fix(deps): pin dependencies #114

Workflow file for this run

name: ci
on:
push:
pull_request:
merge_group:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 'lts/*']
name: Build with node ${{ matrix.node }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4
with:
cache: 'yarn'
node-version: ${{ matrix.node }}
- name: Install dependencies 📦
run: yarn install --immutable
- name: Run typecheck
run: yarn run typecheck
- name: Run build
run: yarn run build