Skip to content

Commit

Permalink
use npm-ci-please to workaound npm ci being broken
Browse files Browse the repository at this point in the history
fixes #5115
  • Loading branch information
tjenkinson committed Jan 21, 2023
1 parent 17a71d4 commit 740692d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

- name: install
run: |
npm ci
npx -y npm-ci-please@1
env:
CI: true

Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- name: install
run: |
npm ci
npx -y npm-ci-please@1
env:
CI: true

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:

- name: install
run: |
npm ci
npx -y npm-ci-please@1
env:
CI: true

Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:

- name: install
run: |
npm ci
npx -y npm-ci-please@1
env:
CI: true

Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:

- name: install
run: |
npm ci
npx -y npm-ci-please@1
env:
CI: true

Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:

- name: install
run: |
npm ci
npx -y npm-ci-please@1
env:
CI: true

Expand Down
2 changes: 1 addition & 1 deletion scripts/netlify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [[ $(git rev-parse --is-shallow-repository) = "true" ]]; then
git fetch --unshallow
fi

npm ci
npx -y npm-ci-please@1
node ./scripts/set-package-version.js
npm run lint
npm run type-check
Expand Down

0 comments on commit 740692d

Please sign in to comment.