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
2 changes: 2 additions & 0 deletions .github/workflows/build-vscode-release.reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ jobs:

- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'

- name: Setup Rust
uses: ./.github/actions/setup-rust
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docs.reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'
install-dependencies: false

- name: Install Fern
Expand Down Expand Up @@ -116,6 +117,7 @@ jobs:
- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'
install-dependencies: false

- name: Install Fern
Expand Down Expand Up @@ -217,6 +219,7 @@ jobs:
- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'
install-dependencies: false

- name: Set environment variables
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/integ-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ jobs:

- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'

- name: Setup Rust
uses: ./.github/actions/setup-rust
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
- name: Setup Node.js
if: matrix.check == 'typescript-lint'
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'

# Setup Rust for Rust checks
- name: Setup Rust
Expand Down Expand Up @@ -111,6 +113,8 @@ jobs:
# Setup Node.js for TypeScript lint
- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'

# Setup Rust for Rust checks
- name: Setup Rust
Expand Down Expand Up @@ -156,6 +160,8 @@ jobs:

- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'

- name: Setup Rust
uses: ./.github/actions/setup-rust
Expand Down Expand Up @@ -219,6 +225,8 @@ jobs:
- name: Setup Node.js
if: matrix.test-suite == 'python-integration'
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'

- name: Setup Python
uses: ./.github/actions/setup-python
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ jobs:
- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'
registry-url: "https://registry.npmjs.org"
npm-token: ${{ secrets.NPM_TOKEN }}
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -206,6 +207,7 @@ jobs:
- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'
install_dependencies: false
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Download VSIX artifacts
Expand Down Expand Up @@ -233,6 +235,7 @@ jobs:
- name: Setup Node.js
uses: ./.github/actions/setup-node
with:
node-action-version: 'v6'
install_dependencies: false
npm-token: ${{ secrets.NPM_TOKEN }}
- name: Download VSIX artifacts
Expand Down
Loading