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 2320866 commit 057e6fbCopy full SHA for 057e6fb
.github/workflows/nodejs.yml
@@ -16,7 +16,11 @@ jobs:
16
uses: actions/setup-node@v1
17
with:
18
node-version: ${{ matrix.node-version }}
19
- - run: npm install
+ - run: npm i -g npm
20
+ # Removing node_modules and package-lock.json is a workaround for some Rollup on Linux bug
21
+ - run: |
22
+ rm -rf node_modules package-lock.json
23
+ npm install
24
- run: npm test
25
env:
26
CI: true
0 commit comments