Skip to content

Fix error where started and quit had switched day difference logic #790

Fix error where started and quit had switched day difference logic

Fix error where started and quit had switched day difference logic #790

Workflow file for this run

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@v3
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