Skip to content

feat: [1] 설문 페이지 디자인 구현 #2

feat: [1] 설문 페이지 디자인 구현

feat: [1] 설문 페이지 디자인 구현 #2

Workflow file for this run

name: PR Check
on:
pull_request:
branches: [dev]
jobs:
lint-and-format:
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: |
npm ci
- name: Run ESLint
run: |
npm run lint
- name: Run Prettier check
run: |
npm run format