Add testing frameworks
This commit is contained in:
parent
fd492c416c
commit
a9c12c2e9f
11 changed files with 1315 additions and 189 deletions
12
.github/workflows/workflow.yml
vendored
12
.github/workflows/workflow.yml
vendored
|
@ -63,6 +63,18 @@ jobs:
|
|||
run: yarn && yarn postinstall
|
||||
- name: Run linter
|
||||
run: yarn lint
|
||||
- name: Run vitest tests
|
||||
run: yarn vitest run --reporter=json
|
||||
- name: Install Playwright Browsers
|
||||
run: npx playwright install --with-deps
|
||||
- name: Run Playwright tests
|
||||
run: npx playwright test
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: playwright-report
|
||||
path: playwright-report/
|
||||
retention-days: 30
|
||||
- name: Build WebUI
|
||||
run: yarn build
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue