chore(deps): update actions/setup-node digest to 8f9cc17 #84
Workflow file for this run
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: Build & Test | |
"on": | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test: | |
name: Build & Test | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb | |
- uses: actions/setup-node@8f9cc178b6e843639351e0bd5d638e5fd0a8dec7 | |
with: | |
node-version: "20" | |
- name: install pnpm | |
run: | | |
corepack enable | |
corepack prepare | |
- name: playwright install | |
run: | | |
pnpm install | |
pnpm exec playwright install --with-deps | |
- name: Test | |
run: pnpm exec playwright test --reporter=list | |
- if: always() | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 | |
required-check: | |
name: All Tests Passed | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "All tests passed!" |