Playwright Tests #6
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: | |
schedule: | |
- cron: "0 0/6 * * 1-5" | |
pull_request: | |
types: [opened, synchronize, reopened, edited] | |
paths-ignore: | |
- ".github/workflows/**" | |
- "!.github/workflows/automated-tests.yml" | |
- "!.github/workflows/playwright.yml" | |
- ".gitignore" | |
- ".prettierignore" | |
- ".prettierrc.json" | |
- "PULL_REQUEST_TEMPLATE.md" | |
- "README.md" | |
workflow_dispatch: | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Uplink Web directory 🔖 | |
uses: actions/checkout@v4 | |
with: | |
repository: Satellite-im/UplinkWeb | |
- name: Checkout Automated Tests directory 🔖 | |
uses: actions/checkout@v4 | |
with: | |
path: automated-tests | |
- name: Setup Node.js for Uplink Web 🔨 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies for Uplink Web 📦 | |
run: npm install | |
- name: Install dependencies for Testing Repo 📦 | |
working-directory: automated-tests | |
run: npm install | |
- name: Install Playwright Browsers | |
working-directory: automated-tests | |
run: npx playwright install --with-deps | |
- name: Run server for Uplink Web | |
run: npm run dev & | |
- name: Run Playwright tests | |
working-directory: automated-tests | |
run: npx playwright test | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: automated-tests/playwright-report/ | |
retention-days: 5 |