π README μμ #38
Workflow file for this run
This file contains 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: Build test | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: μ½λ 체ν¬μμμ€... | |
uses: actions/checkout@v4 | |
- name: λ Έλ λ²μ μ€μ μ€... | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "23" | |
- name: pnpm μ€μΉμ€.. | |
run: npm install -g pnpm | |
- name: μ’ μμ± μ€μΉμ€... | |
run: pnpm install | |
- name: λΉλ μ€.. | |
run: pnpm build |