Dump resources, especially checks, for debugging #1003
Workflow file for this run
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: TypeScript | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '.github/workflows/ci-nix.yml' | |
- 'LICENSE' | |
- '.editorconfig' | |
- 'README.md' | |
- '.vscode/**' | |
pull_request: | |
paths-ignore: | |
- '.github/dependabot.yml' | |
- 'LICENSE' | |
- '.editorconfig' | |
- 'README.md' | |
- '.vscode/**' | |
jobs: | |
build: | |
timeout-minutes: 15 | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.node-version' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build | |
- name: Check no diff for products | |
run: git add --intent-to-add . && git diff --exit-code | |
test: | |
timeout-minutes: 15 | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.node-version' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm test | |
typecheck: | |
timeout-minutes: 15 | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 | |
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version-file: '.node-version' | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile | |
- name: Typecheck | |
run: pnpm run typecheck |