Save new workflow scope type preference #2237
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: | |
pull_request: | |
paths: | |
- 'frontend/src/**' | |
- 'frontend/*.json' | |
- 'frontend/*.js' | |
- 'frontend/*.ts' | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
env: | |
DEV_PASSWORD: ${{ secrets.DEV_PASSWORD }} | |
API_BASE_URL: ${{ secrets.API_BASE_URL }} | |
working-directory: ./frontend | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
cache-dependency-path: frontend/yarn.lock | |
- name: Install dependencies | |
working-directory: frontend | |
run: yarn install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: yarn add [email protected] && yarn playwright install --with-deps | |
working-directory: ./frontend | |
- name: Create env file | |
run: | | |
cd frontend | |
touch .env | |
echo DEV_PASSWORD="${{ secrets.DEV_PASSWORD }}" >> .env | |
echo API_BASE_URL=${{ secrets.API_BASE_URL }} >> .env | |
cat .env | |
- name: Build frontend | |
run: cd frontend && yarn build | |
id: build-frontend | |
- name: Run Playwright tests | |
run: cd frontend && yarn playwright test | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: frontend/playwright-report/ | |
retention-days: 30 |