Skip to content

Feat(client): 온보딩 final-step 수정 (#211) #502

Feat(client): 온보딩 final-step 수정 (#211)

Feat(client): 온보딩 final-step 수정 (#211) #502

Workflow file for this run

name: ci
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract Node.js version from package.json
id: get_node_version
run: echo "version=$(jq -r '.engines.node' package.json)" >> $GITHUB_OUTPUT
- uses: actions/setup-node@v4
with:
node-version: ${{ steps.get_node_version.outputs.version }}
- name: Setup Pnpm
uses: pnpm/action-setup@v4
- run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract Node.js version from package.json
id: get_node_version
run: echo "version=$(jq -r '.engines.node' package.json)" >> $GITHUB_OUTPUT
- uses: actions/setup-node@v4
with:
node-version: ${{ steps.get_node_version.outputs.version }}
- name: Setup Pnpm
uses: pnpm/action-setup@v4
- run: pnpm install --frozen-lockfile
- run: pnpm run build