Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

๐Ÿ› ๋นŒ๋“œ ์‹คํŒจ ๋ฌธ์ œ ํ•ด๊ฒฐ(eslint ํ„ฐ์ง) #297

๐Ÿ› ๋นŒ๋“œ ์‹คํŒจ ๋ฌธ์ œ ํ•ด๊ฒฐ(eslint ํ„ฐ์ง)

๐Ÿ› ๋นŒ๋“œ ์‹คํŒจ ๋ฌธ์ œ ํ•ด๊ฒฐ(eslint ํ„ฐ์ง) #297

Workflow file for this run

name: Playwright Tests
on:
push:
branches: '**'
pull_request:
branches: '**'
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: CI=1 pnpm install & pnpm install --frozen-lockfile
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30