Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
davay42 committed Feb 1, 2025
1 parent 6962964 commit 46f7267
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/gun-es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ jobs:
node-version: 20
registry-url: https://registry.npmjs.org/

- name: Install packages with NPM
run: cd gun-es && npm i --force
- name: Install dependencies
run: |
cd gun-es
rm -f package-lock.json
rm -rf node_modules
npm install
- name: Build the library
run: cd gun-es && npm run build
Expand Down

0 comments on commit 46f7267

Please sign in to comment.