Skip to content

Commit 1dba2b5

Browse files
👷 add build workflow
1 parent 29896fc commit 1dba2b5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v2
13+
- name: Install
14+
run: npm ci --no-audit --no-fund
15+
- name: Build
16+
run: npm run build

0 commit comments

Comments
 (0)