Find the expert extend search capability #85
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: Playwright Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set Swap Space | |
uses: pierotofy/set-swap-space@master | |
with: | |
swap-size-gb: 10 | |
- name: "π Checkout Code" | |
uses: actions/checkout@v4 | |
- name: "π¦ Setup Node" | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: "π§ Install dependencies" | |
run: npm ci | |
- name: "π Install Playwright Browsers" | |
run: npx playwright install --with-deps | |
- name: "π Prepare" | |
run: | | |
cp .env.example .env | |
- name: "π Run Playwright tests" | |
run: npx playwright test | |
- name: "π€ Upload Artifacts" | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |