1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
name: CI
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
node -v
corepack -v
- run: npm install -g corepack@0.31.0 # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
- run: corepack enable
- run: pnpm install
- run: pnpm build
- run: pnpm lint
- run: pnpm test --reporter=html
- name: upload artifact
uses: actions/upload-artifact@v4
if: always()
with:
path: html
name: test-report
test-types:
runs-on: ubuntu-latest
name: Test Types with TypeScript ${{ matrix.ts }}
strategy:
matrix:
ts:
- "4.7"
- "4.8"
- "4.9"
- "5.0"
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "5.7"
- "5.8"
- "5.9"
steps:
- uses: actions/checkout@v4
- run: npm install -g corepack@0.31.0 # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
- run: corepack enable
- run: pnpm install
- run: pnpm install typescript@${{ matrix.ts }}
- run: pnpm list typescript
- run: pnpm type-check
- run: pnpm tsgo
are-the-types-wrong:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install -g corepack@0.31.0 # todo: delete if https://github.com/nodejs/corepack/issues/612 is resolved
- run: corepack enable
- run: pnpm install
- run: pnpm arethetypeswrong
|