Skip to content

refactor: [9] 코드 리팩토링 #5

refactor: [9] 코드 리팩토링

refactor: [9] 코드 리팩토링 #5

Workflow file for this run

name: PR Test
on:
pull_request:
branches: [dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "21"
- name: Install dependencies
run: |
cd web
npm ci
- name: Run tests
run: |
cd web
npm run test