We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea6177b commit ace91a8Copy full SHA for ace91a8
.github/workflows/cli_tests.yml
@@ -15,15 +15,19 @@ jobs:
15
run:
16
working-directory: ./cli
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
19
20
- name: Set up Node.js
21
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v4
22
with:
23
- node-version: "14"
+ node-version-file: package.json
24
+ cache: npm
25
- - name: Install dependencies
26
- run: npm install
+ # Working around https://github.com/npm/cli/issues/4828
27
+ - run: npm install --no-package-lock
28
+
29
+ - name: Build CLI
30
+ run: npm run build
31
32
- name: Run tests
33
run: npm test
0 commit comments