Skip to content

Commit

Permalink
Add --force to npm ci for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tjenkinson committed Oct 8, 2023
1 parent c0811ec commit 4185b9d
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 @@ -82,7 +82,7 @@ jobs:

- name: install
run: |
npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force
env:
CI: true

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

- name: install
run: |
npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force
env:
CI: true

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

- name: install
run: |
npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force
env:
CI: true

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

- name: install
run: |
npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force
env:
CI: true

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

- name: install
run: |
npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force
env:
CI: true

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

- name: install
run: |
npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force
env:
CI: true

Expand Down
2 changes: 1 addition & 1 deletion scripts/build-on-cloudflare.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

npx -y npm-ci-please@^1.1.1
npx -y npm-ci-please@^1.1.1 -- --force # TODO remove force
./scripts/set-package-version.sh
npm run lint
npm run type-check
Expand Down

0 comments on commit 4185b9d

Please sign in to comment.