Skip to content

Commit f749632

Browse files
committed
feat: Add workflow to build app
1 parent 362df7a commit f749632

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build-app.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build App
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'index.js'
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- uses: tool3/ncc@v1
17+
with:
18+
github_token: ${{ github.token }}
19+
src: 'index.js'

0 commit comments

Comments
 (0)