Skip to content

Commit

Permalink
Specify Node 16.13 for CI builds (#6154)
Browse files Browse the repository at this point in the history
Builds have stopped working with Node 16.15.1. This specifies 16.13 as a short-term solution to get deploys working again.
  • Loading branch information
eatyourgreens authored Jun 14, 2022
1 parent b35ff23 commit e83dd4e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '16.13.x'
cache: 'npm'

- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: zooniverse/ci-cd/.github/workflows/npm_build.yaml@main
with:
commit_id: ${{ github.sha }}
node_version: '16.x'
node_version: '16.13.x'
output: 'dist'
script: 'build-production'
deploy_staging_branch:
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 @@ -15,7 +15,7 @@ jobs:
uses: zooniverse/ci-cd/.github/workflows/npm_build.yaml@main
with:
commit_id: ${{ github.sha }}
node_version: '16.x'
node_version: '16.13.x'
output: 'dist'
script: '_build-production'
deploy_production:
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 @@ -12,7 +12,7 @@ jobs:
uses: zooniverse/ci-cd/.github/workflows/npm_build.yaml@main
with:
commit_id: ${{ github.sha }}
node_version: '16.x'
node_version: '16.13.x'
output: 'dist'
script: 'build-production'
deploy_staging:
Expand Down

0 comments on commit e83dd4e

Please sign in to comment.