Skip to content

[DESIGN] 폴더 영역 디자인 개선 #103

[DESIGN] 폴더 영역 디자인 개선

[DESIGN] 폴더 영역 디자인 개선 #103

Workflow file for this run

name: Playwright Tests
on:
pull_request:
branches: [frontend]
workflow_dispatch:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend/techpick
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: frontend/yarn.lock
- name: Install dependencies
run: yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn playwright test
- name: 'Upload Playwright Report'
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: frontend/techpick/playwright-report/
retention-days: 10