Skip to content

feat : github action을 제대로 적응하기 위한 테스트 중 #4

feat : github action을 제대로 적응하기 위한 테스트 중

feat : github action을 제대로 적응하기 위한 테스트 중 #4

Workflow file for this run

name: Build nextjs projects
on:
push:
branches: ["dev"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: use node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: use pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- run: pnpm install
- run: pnpm run build