-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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
1 parent
3843f82
commit 75fce33
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters