Skip to content

Commit

Permalink
Need to --ignore-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw committed Oct 7, 2024
1 parent d7bfeb1 commit 13157c8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test-online-editor/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
uses: pnpm/action-setup@v4.0.0
with:
version: 9.11.0
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-scripts
shell: bash
working-directory: tools/slintpad

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
- name: "Node docs"

run: |
pnpm install --ignore-scripts --frozen-lockfile
pnpm install --frozen-lockfile --ignore-scripts
pnpm run docs
working-directory: api/node

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:
echo 1 > target/debug/slint-lsp
- name: Run pnpm install
working-directory: editors/vscode
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Lint vscode project
working-directory: editors/vscode
run: pnpm lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly_snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ jobs:
shell: bash
- name: "pnpm install"
working-directory: editors/vscode
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build package and optionally publish to Visual Studio Marketplace
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wasm_editor_and_interpreter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
with:
name: wasm
- name: Install NPM dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-scripts
working-directory: tools/slintpad

- name: Compile slintpad
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
with:
name: wasm
- name: Install NPM dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-scripts
working-directory: tools/slintpad

- name: Lint slintpad # This needs the WASM!
Expand Down

0 comments on commit 13157c8

Please sign in to comment.