Skip to content

fix: 일부 문제 테스트케이스 수정 #98

fix: 일부 문제 테스트케이스 수정

fix: 일부 문제 테스트케이스 수정 #98

Workflow file for this run

name: Run test
on: [push]
jobs:
test:
name: Run test
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm install --immutable
- name: Run test command
run: npm run test