Skip to content

chore: 리드미 수정 #653

chore: 리드미 수정

chore: 리드미 수정 #653

Workflow file for this run

name: Build test
on:
push:
pull_request:
jobs:
build-test:
name: Next build test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get Env
run: |
touch ./.env.production
echo "${{secrets.PRODUCTION_ENV}}" > ./.env.production
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build