Skip to content

hotfix: 빌드 시 type error 해결 #22

hotfix: 빌드 시 type error 해결

hotfix: 빌드 시 type error 해결 #22

Workflow file for this run

name: Vitest Unit Test
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm install -g pnpm
- name: npm ci
run: pnpm install --frozen-lockfile
- name: vitest
run: pnpm test:run