fix(deps): pin dependencies #764
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: | |
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # 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 |