Skip to content

Feat: 랜딩 수정 #231

Feat: 랜딩 수정

Feat: 랜딩 수정 #231

Workflow file for this run

name: Test App
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
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: jest
run: pnpm test:run