test(marshal,ses): Prefer test.skip over conditional early return #219
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
name: Browser Tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
browser-tests: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build artifacts | |
run: yarn build | |
- name: Install browser test dependencies | |
working-directory: browser-test | |
run: npm ci | |
- name: Install Playwright Browsers | |
working-directory: browser-test | |
run: npx playwright install --with-deps | |
- name: Run Playwright tests | |
working-directory: browser-test | |
run: npx playwright test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: browser-test-report | |
path: browser-test/playwright-report/ | |
retention-days: 30 |