Skip to content

[8팀 조우영] [Chapter 1-1] 프레임워크 없이 SPA 만들기 #211

[8팀 조우영] [Chapter 1-1] 프레임워크 없이 SPA 만들기

[8팀 조우영] [Chapter 1-1] 프레임워크 없이 SPA 만들기 #211

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