Skip to content

Commit d424fec

Browse files
committed
build workflow
Signed-off-by: leecalcote <[email protected]>
1 parent 0a4aa2d commit d424fec

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build
2+
on:
3+
push:
4+
branches:
5+
- 'master'
6+
tags:
7+
- 'v*'
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v3
16+
- name: Setup Node.js
17+
uses: actions/[email protected]
18+
with:
19+
node-version: 12.9.1
20+
cache: 'npm'
21+
- name: Setup dependencies
22+
run: |
23+
npm ci
24+
npm i -g nexe
25+
- name: Build artifacts
26+
run: make
27+

0 commit comments

Comments
 (0)