-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #572 from eclipse-thingweb/ege-old-web-removal2
Phasing out the old web package
- Loading branch information
Showing
73 changed files
with
9,627 additions
and
25,091 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Visual Testing Pipeline | ||
name: Web Package Visual Testing Pipeline | ||
|
||
on: | ||
pull_request: | ||
|
@@ -14,26 +14,31 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js 16 | ||
uses: actions/setup-node@v1 | ||
- name: Use Node.js 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
|
||
- name: Use lerna | ||
run: npm install -g [email protected] | ||
|
||
- name: Bootstrap | ||
run: lerna bootstrap --no-ci | ||
|
||
- name: Visual Test | ||
|
||
- name: Visual Tests | ||
timeout-minutes: 30 | ||
run: | | ||
cd ./packages/web | ||
npm test | ||
- name: Upload test screenshots | ||
uses: actions/upload-artifact@v2 | ||
cd ./packages/web | ||
npm install | ||
npx playwright install chromium firefox | ||
npm run build | ||
npm test | ||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: playwright screenshots and downloads | ||
path: packages/web/test_results | ||
name: playwright-report | ||
path: ./packages/web/playwright-report/ | ||
retention-days: 30 |
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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"packages": ["packages/*"], | ||
"version": "independent", | ||
"ignore": ["packages/web-new"] | ||
"ignore": ["packages/web"] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.