Skip to content

refactor: pass each phase a context instead of shared loop state #32

refactor: pass each phase a context instead of shared loop state

refactor: pass each phase a context instead of shared loop state #32

Workflow file for this run

name: Unit Tests (PR)
on:
pull_request:
branches: ["canary", "master"]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
version: [26]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.version }}
cache: "pnpm"
# The package scripts call just, so it is needed before install
- uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3 # v4.0.0
- run: pnpm install --frozen-lockfile
- run: just typecheck
- run: just lint-ci
- run: just fmt-check
- run: just test
- run: just typecheck-fixtures