Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
build 자동화 test
  • Loading branch information
givemetarte authored May 7, 2024
1 parent d342401 commit 125781f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build Docs

on:
push:
branches:
- main
jobs:
build:
runs-on: macos-latest

steps:
- name: Chekout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install Dependencies
run: npm install

- name: Build Docs
run: npm run docs:build

0 comments on commit 125781f

Please sign in to comment.