TypeScript Canary #107
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 Canary | |
on: | |
schedule: | |
# Every Thursday at 21.15 | |
- cron: '15 21 * * 4' | |
workflow_dispatch: | |
jobs: | |
types: | |
name: TypeScript ${{ matrix.typescript-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
typescript-version: | |
- next | |
- latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- run: npm install | |
- run: npm install typescript@${{ matrix.typescript-version }} | |
- name: show installed typescript version | |
run: npm list typescript --depth=0 | |
- run: npx tsc |