8000
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 10ad4ef commit 54b1170Copy full SHA for 54b1170
.github/workflows/ci.yml
@@ -16,7 +16,6 @@ jobs:
16
path: ~/.npm
17
key: ${{runner.os}}-npm-${{hashFiles('**/package-lock.json')}}
18
restore-keys: ${{runner.os}}-npm-
19
-# - run: npm ci #todo better use ci
20
- - run: npm install
+ - run: npm ci
21
- run: npm run style:check
22
- run: npm test
.github/workflows/my_node_js_integration_test.yml
@@ -19,7 +19,9 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- - run: npm ci
+ - run: npm install -g npm-cli-login
23
+# - run: npm ci #todo better use ci
24
+ - run: npm install
25
- run: ./integration_test.sh
26
# - run: npm run build --if-present
27
# - run: npm test
0 commit comments