Skip to content

Commit

Permalink
Temp job with Node.js v22 + typescript v5.5-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Apr 26, 2024
1 parent f054070 commit 21bbf28
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci-ts-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Tests (against typescript@beta in Node.js v22)

on:
workflow_dispatch:
pull_request:
push:
branches:
- '**'
tags:
- '!**'

jobs:
test:
runs-on: ubuntu-latest
name: Ubuntu/Node v22
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm install typescript@beta @types/node@20 --ignore-scripts
- name: Build knip
run: npm run build
working-directory: packages/knip
- name: Test knip
run: npm run test:node
working-directory: packages/knip
- name: Run knip
run: npx knip
- name: Run knip --production --strict
run: npx knip --production --strict

0 comments on commit 21bbf28

Please sign in to comment.