Skip to content

Bump actions/checkout from 2.7.0 to 4.2.0 #121

Bump actions/checkout from 2.7.0 to 4.2.0

Bump actions/checkout from 2.7.0 to 4.2.0 #121

Workflow file for this run

name: Compatible Typescript Versions
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
typescript-version: [4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9 ]
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Use Node.js 16.x
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 16.x
- run: npm ci
- run: npm run build
- run: npm install typescript@${{ matrix.typescript-version }}
- run: npx tsc spec/ts-compat-test.ts --noEmit --skipLibCheck