Skip to content

[FE] 스토리북의 버그를 고치고, 관련 컴포넌트를 일부 수정한다. #14

[FE] 스토리북의 버그를 고치고, 관련 컴포넌트를 일부 수정한다.

[FE] 스토리북의 버그를 고치고, 관련 컴포넌트를 일부 수정한다. #14

Workflow file for this run

name: Playwright Tests
on:
pull_request:
branches: [main, dev-fe]
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: |
cd frontend
npm install -g yarn && yarn
- name: Install Playwright Browsers
run: |
cd frontend
yarn playwright install --with-deps
- name: Run Playwright tests
run: |
cd frontend
yarn playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
working-directory: frontend

Check failure on line 32 in .github/workflows/playwright.yml

View workflow run for this annotation

GitHub Actions / Playwright Tests

Invalid workflow file

The workflow is not valid. .github/workflows/playwright.yml (Line: 32, Col: 9): Unexpected value 'working-directory'