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 f10b76b commit c1ab2a5Copy full SHA for c1ab2a5
.github/workflows/cli_tests.yml
@@ -11,6 +11,9 @@ on:
11
jobs:
12
test:
13
runs-on: ubuntu-latest
14
+ defaults:
15
+ run:
16
+ working-directory: ./cli
17
steps:
18
- uses: actions/checkout@v4
19
@@ -21,10 +24,10 @@ jobs:
21
24
cache: npm
22
25
23
26
- name: Install dependencies
- run: npm install --workspace=cli
27
+ run: npm install --ignore-scripts
28
29
- name: Build CLI
- run: npm run build --workspace=cli
30
+ run: npm run build
31
32
- name: Run tests
- run: npm run test --workspace=cli
33
+ run: npm test
0 commit comments