Skip to content

🔀참조 정리

🔀참조 정리 #54

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
env:
CI: ""
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: build