Files
notify/.github/workflows/ci.yaml
Alix von Schirp 0dd85ff63b
Some checks failed
/ check (20) (push) Failing after 28s
/ check (22) (push) Failing after 26s
fix(ci.yaml): run turbo from pnpm
Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
2025-12-22 00:13:04 +01:00

23 lines
562 B
YAML

on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Deps
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install
run: pnpm install
- name: Typecheck & Lint
run: SKIP_ENV_VALIDATION=true pnpm turbo check