Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
with:
go-version: '1.23.8'

- run: npm install
- run: npm ci
working-directory: vscode-extension

- run: rm -rf vscode-extension/bin
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
with:
node-version: '22.x'

- run: npm install
- run: npm ci

- run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
node-version: '22.x'

- run: |
NODE_OS=${{ matrix.nodeos }} NODE_ARCH=${{ matrix.nodearch }} npm install
NODE_OS=${{ matrix.nodeos }} NODE_ARCH=${{ matrix.nodearch }} npm ci

- name: Set variables
id: set-variables
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
node-version: '22.x'

- run: |
NODE_OS=${{ matrix.nodeos }} NODE_ARCH=${{ matrix.nodearch }} npm install
NODE_OS=${{ matrix.nodeos }} NODE_ARCH=${{ matrix.nodearch }} npm ci

- name: Set variables
id: set-variables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: '22.x'

- name: Install dependencies
run: npm install
run: npm ci

- name: Run ESLint
run: npm run lint
Expand Down
Loading