Skip to content

Commit

Permalink
ucfopen#2013 Changing Github workflows to run tests etc. using Node 1…
Browse files Browse the repository at this point in the history
…6 instead of 14.
  • Loading branch information
FrenjaminBanklin committed Jan 9, 2023
1 parent 93948f3 commit 43edfef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -19,10 +19,10 @@ jobs:
# should help to speed up yarn install and be safe
# across changes to the repo and platforms
- name: Cache Yarn Deps
uses: c-hive/gha-yarn-cache@v1
uses: c-hive/gha-yarn-cache@v1

- run: echo "github.ref = ${{ github.ref }}"

# frozen lockfile should make the cache more effective
# and our tests more predictable
- run: yarn install --frozen-lockfile
Expand All @@ -35,7 +35,7 @@ jobs:
# will fail the PRs that need prettier run on them
- name: Does Prettier Need to Be Run
run: git --no-pager diff --exit-code -- .

- run: yarn test:ci

build_docker_images:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: NPM - Test, Build, Deploy
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
registry-url: https://registry.npmjs.org/

- name: Cache Yarn Deps
Expand Down

0 comments on commit 43edfef

Please sign in to comment.