forked from webpro-nl/knip
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 880 Bytes
/
ci-ts-beta.yml
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
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
- name: Install dependencies
run: npm install --ignore-scripts
- name: Install latest peer dependencies
run: |
npm install -w packages/knip typescript@beta @types/node@latest
- 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