Feat(client): 온보딩 final-step 수정 (#211) #502
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |