Skip to content

Commit

Permalink
Merge df12f1d into ecbac78
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrini authored Oct 27, 2023
2 parents ecbac78 + df12f1d commit 5c8b5c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
path: 'node_modules'
key: ${{ runner.os }}-node-16-${{ hashFiles('package*.json') }}
- if: steps.cache.outputs.cache-hit != 'true'
run: npm install
run: npm install --no-audit

build:
needs: install
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {
execSync('git add CHANGELOG.md');

// npm install to make sure deps are correct
execSync('npm install', { stdio: "inherit" });
execSync('npm install --no-audit', { stdio: "inherit" });

// build
execSync('npm run build', { stdio: "inherit" });
Expand Down

0 comments on commit 5c8b5c7

Please sign in to comment.