We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2416c07 commit 65a5a15Copy full SHA for 65a5a15
1 file changed
.github/workflows/cli-pr-checks.yml
@@ -1,6 +1,4 @@
1
name: CLI PR checks
2
-description: check the CLI PR
3
-
4
on:
5
pull_request:
6
paths: ['cli/**']
@@ -10,7 +8,7 @@ concurrency:
10
8
cancel-in-progress: true
11
9
12
jobs:
13
- check-code:
+ test:
14
runs-on: ubuntu-latest
15
16
steps:
@@ -19,7 +17,7 @@ jobs:
19
17
- name: Setup Node.js
20
18
uses: actions/setup-node@v4
21
with:
22
- node-version: '20'
+ node-version: '22'
23
cache: 'npm'
24
cache-dependency-path: 'cli/npm-shrinkwrap.json'
25
@@ -39,12 +37,17 @@ jobs:
39
37
working-directory: cli
40
38
run: npm run lint
41
42
- - name: Test no crash
+ - name: Install iapp cli
43
44
run: |
45
npm i -g .
46
iapp -h
47
+ - name: Test
+ working-directory: cli
48
+ run: |
49
+ npm run test
50
+
51
npm-dry-run:
52
uses: ./.github/workflows/reusable-cli-npm.yml
53
0 commit comments