Skip to content

[12팀 배성규] [Chapter 2-2] 디자인 패턴과 함수형 프로그래밍 #27

[12팀 배성규] [Chapter 2-2] 디자인 패턴과 함수형 프로그래밍

[12팀 배성규] [Chapter 2-2] 디자인 패턴과 함수형 프로그래밍 #27

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 }}
- uses: actions/setup-node@v4
with:
node-version: 20
- 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 }}
- uses: actions/setup-node@v4
with:
node-version: 20
- name: advanced-test
run: |
npm install
npm run test:advanced