Skip to content

[Feat/#28] Contents ์ปดํฌ๋„ŒํŠธ ๊ตฌํ˜„ #69

[Feat/#28] Contents ์ปดํฌ๋„ŒํŠธ ๊ตฌํ˜„

[Feat/#28] Contents ์ปดํฌ๋„ŒํŠธ ๊ตฌํ˜„ #69

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build Test
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install pnpm
run: |
npm install -g pnpm
echo "PNPM PATH: $(which pnpm)"
pnpm --version
- name: Install dependencies
run: pnpm install
- name: Run build
run: pnpm build