Skip to content

docs: code and description order of tree docs #9

docs: code and description order of tree docs

docs: code and description order of tree docs #9

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- '**' # 모든 브랜치에 대해 PR 생성 시 실행
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test