Skip to content

[FEAT] 완료된 신청내역 조회 #9

[FEAT] 완료된 신청내역 조회

[FEAT] 완료된 신청내역 조회 #9

Workflow file for this run

name: CI
on:
pull_request:
branches: [develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run Linter
run: npm run lint
- name: Run Tests
run: npm test