Forecast: Displaying summary rows for 'best case scenario' #1293
Workflow file for this run
This file contains hidden or 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: Frontend Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
playwright: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
working-directory: ./frontend | |
run: yarn | |
- name: Install Playwright Browsers | |
working-directory: ./frontend | |
run: yarn playwright install --with-deps | |
- name: Run Playwright tests | |
working-directory: ./frontend | |
run: yarn playwright test | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: ./frontend/playwright-report/ | |
retention-days: 30 | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
working-directory: ./frontend | |
run: yarn | |
- name: Build | |
working-directory: ./frontend | |
run: yarn next build | |
- name: Lint | |
working-directory: ./frontend | |
run: yarn next lint | |
- name: Check formatting | |
working-directory: ./frontend | |
run: yarn prettier:ci | |
build-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 | |
- name: Validate build configuration | |
uses: docker/build-push-action@v6 | |
with: | |
call: check | |
file: Frontend.Dockerfile |