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 9adcc0d commit f10b76bCopy full SHA for f10b76b
.github/workflows/cli_tests.yml
@@ -11,26 +11,20 @@ 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
20
- name: Set up Node.js
21
uses: actions/setup-node@v4
22
with:
23
- node-version-file: package.json
+ node-version-file: cli/package.json
24
cache: npm
25
26
- - name: Current directory
27
- run: pwd
28
-
29
- name: Install dependencies
30
- run: npm install
+ run: npm install --workspace=cli
31
32
- name: Build CLI
33
- run: npm run build
+ run: npm run build --workspace=cli
34
35
- name: Run tests
36
- run: npm test
+ run: npm run test --workspace=cli
0 commit comments