Skip to content

Commit 89c2804

Browse files
Add build workflow
1 parent 21715ca commit 89c2804

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: App build
2+
3+
on:
4+
push:
5+
branches:
6+
- add-build-workflow
7+
jobs:
8+
build:
9+
runs-on: macos-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Use Node.js
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: '20.x'
17+
- run: npm ci
18+
- run: npm run dist

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ci
1+
name: docs publish
22
on:
33
push:
44
branches:

0 commit comments

Comments
 (0)