Skip to content

[7ํŒ€ ๊น€์›ํ‘œ] [Chapter 2-2] ๋””์ž์ธ ํŒจํ„ด๊ณผ ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ #193

[7ํŒ€ ๊น€์›ํ‘œ] [Chapter 2-2] ๋””์ž์ธ ํŒจํ„ด๊ณผ ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ

[7ํŒ€ ๊น€์›ํ‘œ] [Chapter 2-2] ๋””์ž์ธ ํŒจํ„ด๊ณผ ํ•จ์ˆ˜ํ˜• ํ”„๋กœ๊ทธ๋ž˜๋ฐ #193

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