Skip to content

fix : next,react 보안문제 해결을 위해 안정적 패치 버전으로 변경 #67

fix : next,react 보안문제 해결을 위해 안정적 패치 버전으로 변경

fix : next,react 보안문제 해결을 위해 안정적 패치 버전으로 변경 #67

Workflow file for this run

name: CI - Test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test