Skip to content

Commit 057e6fb

Browse files
committed
chore: Update GitHub action
1 parent 2320866 commit 057e6fb

File tree

2 files changed

+5
-1240
lines changed

2 files changed

+5
-1240
lines changed

.github/workflows/nodejs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616
uses: actions/setup-node@v1
1717
with:
1818
node-version: ${{ matrix.node-version }}
19-
- run: npm install
19+
- 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
2024
- run: npm test
2125
env:
2226
CI: true

0 commit comments

Comments
 (0)