Skip to content

Commit

Permalink
Github Action (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheonjiyun authored Aug 27, 2024
1 parent b5d6315 commit d5a4ef4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Test

on:
pull_request:
branches:
- dev

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

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

- name: Install dependencies
run: npm install

- name: Run build
run: npm run build

0 comments on commit d5a4ef4

Please sign in to comment.