Skip to content

Commit

Permalink
Hopefully fixing github build action problem
Browse files Browse the repository at this point in the history
It seems that an npm issue causes build problems related to a divergence
in node_modules and package-lock.json:

npm/cli#4828

I hope this change will fix this.
  • Loading branch information
bylexus committed Apr 23, 2024
1 parent ea6ea99 commit 0273881
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: rm -rf node_modules package-lock.json
- run: npm install
- run: npm run build
- run: npm test
3 changes: 2 additions & 1 deletion .github/workflows/develop-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: rm -rf node_modules package-lock.json
- run: npm install
- run: npm run build
- run: npm test

0 comments on commit 0273881

Please sign in to comment.