Skip to content

feat: workflow (#401) #13

feat: workflow (#401)

feat: workflow (#401) #13

Workflow file for this run

on:
push:
branches:
- '**'
name: build
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.13.1]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install bun and Build Test
run: |
curl -fsSL https://bun.sh/install | bash
export PATH=$HOME/.bun/bin:$PATH # Bun 설치 후 경로 설정
bun install
bun run build