Skip to content

Commit 833c09c

Browse files
committed
Add a GH actions linux build
1 parent 810c9a0 commit 833c09c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
build:
5+
name: Build & test
6+
runs-on: ubuntu-latest
7+
container: httptoolkit/act-build-base
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: 14
14+
15+
- run: npm ci
16+
- run: npm build

0 commit comments

Comments
 (0)