Skip to content

Commit

Permalink
TERR-364
Browse files Browse the repository at this point in the history
- change minimum required version of node to 16 for build and component testing in ci.yml
- bumped min node version required to 16 in package.json
- readded min node version required of 18 for E2E testing in ci.yml
  • Loading branch information
sanchezelton committed May 30, 2024
1 parent 3843f82 commit 75fce33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Node.js environment for build
uses: actions/[email protected]
with:
node-version: "18.x"
node-version: "16.x"

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -43,6 +43,11 @@ jobs:
- name: Build and test frontend
run: yarn build

- name: Setup Node.js environment for E2E testing
uses: actions/[email protected]
with:
node-version: "18.x"

- name: Install E2E dependencies
run: npx playwright test

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"main": "index.js",
"types": "dist/exports.d.ts",
"engines": {
"node": ">=15"
"node": ">=16"
},
"dependencies": {
"@emotion/css": "11.10.5",
Expand Down

0 comments on commit 75fce33

Please sign in to comment.