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 940b115 commit 543056eCopy full SHA for 543056e
.github/workflows/ci.yml
@@ -63,22 +63,19 @@ jobs:
63
- name: Install latest NPM
64
run: npm i -g npm@latest
65
66
+ - name: Install test dependencies
67
+ run: npm ci
68
+
69
- name: Download build artifact
70
uses: actions/download-artifact@v4
71
with:
72
name: package
- path: ./package
73
+ path: .
74
75
- name: Extract build package
- working-directory: ./package
- run: tar -xzf cldn-ip-0.0.0-dev.tgz
-
76
- - name: Install test dependencies
77
- working-directory: ./package/package
78
- run: npm ci
+ run: tar -xzf cldn-ip-0.0.0-dev.tgz --strip-components=1 -C . --overwrite
79
80
- name: Test
81
82
run: npm run test
83
84
publish:
0 commit comments