Skip to content

[9νŒ€ λ°•μ§€μˆ˜] [Chapter 1-1] ν”„λ ˆμž„μ›Œν¬ 없이 SPA λ§Œλ“€κΈ° #105

[9νŒ€ λ°•μ§€μˆ˜] [Chapter 1-1] ν”„λ ˆμž„μ›Œν¬ 없이 SPA λ§Œλ“€κΈ°

[9νŒ€ λ°•μ§€μˆ˜] [Chapter 1-1] ν”„λ ˆμž„μ›Œν¬ 없이 SPA λ§Œλ“€κΈ° #105

Workflow file for this run

name: CI
on:
pull_request_target:
types:
- synchronize
- opened
- reopened
workflow_dispatch:
jobs:
basic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: test basic
run: |
npm install
npm run test:basic
advacned:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: advanced-test
run: |
npm install
npm run test:advanced
e2e:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Install dependencies
run: |
npm install
npx playwright install --with-deps
npm run test:e2e