@playpilot/tpi 6.1.2 → 6.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,20 +3,32 @@ name: Tests
3
3
  on: push
4
4
 
5
5
  jobs:
6
+ check:
7
+ name: Run checks
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: '24'
16
+ cache: 'npm'
17
+
18
+ - run: npm ci
19
+ - run: npm run check
20
+
6
21
  unit-tests:
7
22
  name: Run unit tests
8
-
9
23
  runs-on: ubuntu-latest
10
24
 
11
25
  steps:
12
- - uses: actions/checkout@v3
26
+ - uses: actions/checkout@v4
13
27
 
14
- - name: Use Node.js
15
- uses: actions/setup-node@v3
28
+ - uses: actions/setup-node@v4
16
29
  with:
17
- node-version: '20 || >=22'
30
+ node-version: '24'
31
+ cache: 'npm'
18
32
 
19
33
  - run: npm ci
20
-
21
- - name: Run tests
22
- run: npm run test:unit
34
+ - run: npm run test:unit