Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/deploy-prod-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
package-manager-cache: false
registry-url: "https://registry.npmjs.org/"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy-prod-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
package-manager-cache: false
registry-url: "https://registry.npmjs.org/"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy-stage-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
package-manager-cache: false
registry-url: "https://registry.npmjs.org/"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy-stage-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
package-manager-cache: false
registry-url: "https://registry.npmjs.org/"

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish-package-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
package-manager-cache: false
registry-url: "https://registry.npmjs.org/"

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ on:
- main
pull_request:

# No GITHUB_TOKEN permissions, as we don't use it.
permissions: {}
permissions: {} # No GITHUB_TOKEN permissions, as we don't use it.

jobs:
root:
Expand All @@ -24,6 +23,7 @@ jobs:
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
cache: npm

- name: Install
Expand All @@ -46,6 +46,7 @@ jobs:
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
cache: npm
cache-dependency-path: api/package-lock.json

Expand Down Expand Up @@ -75,6 +76,7 @@ jobs:
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
check-latest: true
cache: npm
cache-dependency-path: updates/package-lock.json

Expand Down