Very simple confirmation of saved vacation (#521) #789
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: 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 | |