Skip to content

Commit

Permalink
Fix internal NPM error in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cyraxx committed Jul 18, 2024
1 parent dc146ff commit ae744df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Install Dependencies
id: npm-ci
run: npm ci
run: NODE_OPTIONS="--no-network-family-autoselection" npm ci

- name: Run TypeScript Build
id: npm-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Install Dependencies
id: npm-ci
run: npm ci
run: NODE_OPTIONS="--no-network-family-autoselection" npm ci

- name: Run Lint Script
id: npm-lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mocha-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Install Dependencies
id: npm-ci
run: npm ci
run: NODE_OPTIONS="--no-network-family-autoselection" npm ci

- name: Run Mocha Tests
id: mocha-tests
Expand Down

0 comments on commit ae744df

Please sign in to comment.