🤖 Bump sass from 1.83.0 to 1.83.1 #469
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: "E2E-Testing" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.13" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Set up PlayWright browser | |
run: npx playwright install --with-deps | |
- name: Build frontend | |
run: npm run build | |
- name: Start dev server | |
run: npm run dev & | |
- name: Run Playwright tests | |
run: npx playwright test |