Skip to content

Commit

Permalink
bump workflows to Node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousens authored Oct 27, 2021
1 parent 8e87432 commit 3733a0a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:
uses: actions/checkout@v2
if: needs.should_run_tests.outputs.shouldRunTests == 'true'

- name: Setup Node.js 14.x
- name: Setup Node.js LTS
uses: actions/setup-node@main
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
with:
node-version: 14.x
node-version: lts/*

- name: Get yarn cache directory path
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
Expand Down Expand Up @@ -108,10 +108,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Setup Node.js 14.x
- name: Setup Node.js LTS
uses: actions/setup-node@main
with:
node-version: 14.x
node-version: lts/*

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -146,10 +146,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Setup Node.js 14.x
- name: Setup Node.js LTS
uses: actions/setup-node@main
with:
node-version: 14.x
node-version: lts/*

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -204,11 +204,11 @@ jobs:
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
uses: actions/checkout@v2

- name: Setup Node.js 14.x
- name: Setup Node.js LTS
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
uses: actions/setup-node@main
with:
node-version: 14.x
node-version: lts/*

- name: Get yarn cache directory path
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
Expand Down Expand Up @@ -254,11 +254,11 @@ jobs:
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
uses: actions/checkout@v2

- name: Setup Node.js 14.x
- name: Setup Node.js LTS
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
uses: actions/setup-node@main
with:
node-version: 14.x
node-version: lts/*

- name: Get yarn cache directory path
if: needs.should_run_tests.outputs.shouldRunTests == 'true'
Expand Down Expand Up @@ -296,10 +296,10 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v2

- name: Setup Node.js 14.x
- name: Setup Node.js LTS
uses: actions/setup-node@main
with:
node-version: 14.x
node-version: lts/*

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down

0 comments on commit 3733a0a

Please sign in to comment.