Skip to content

Commit

Permalink
Merge pull request #7438 from jrjohnson/pin-old-node
Browse files Browse the repository at this point in the history
Temporarily pin node to v18.7
  • Loading branch information
stopfstedt authored Sep 29, 2023
2 parents ceea813 + c7cc106 commit e980dc7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: npm
- name: Install Dependencies
run: npm ci
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: npm
- name: install dependencies
run: npm ci
Expand All @@ -102,7 +102,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: npm
- run: npm ci
- run: npm test
Expand All @@ -117,7 +117,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: npm
- run: npm ci
- run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
cache: 'npm'
- name: install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-transitive-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 18.7
- name: remove and re-create lock file
run: |
rm package-lock.json
Expand Down

0 comments on commit e980dc7

Please sign in to comment.