Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kotto5 authored and lim396 committed Oct 18, 2023
1 parent fd3dc7d commit ae0de80
Show file tree
Hide file tree
Showing 2 changed files with 375 additions and 399 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Test
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3

- name: setup-node
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm

- name: npm-install
run: yarn

- name: app-build
run: yarn build
Loading

0 comments on commit ae0de80

Please sign in to comment.