Skip to content

Commit 400f5b7

Browse files
committed
Add temporary github workflow to verify build
1 parent 7dd851d commit 400f5b7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/client-build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Temporary workflow for this branch -- we may want to build the client in the main
2+
# workflow (cibuild.yml).
3+
name: OTP Client CI build
4+
on:
5+
push:
6+
branches:
7+
- debug-client-next
8+
pull_request:
9+
branches:
10+
- debug-client-next
11+
paths:
12+
- client-next/**
13+
jobs:
14+
build-linux:
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 20
17+
steps:
18+
- uses: actions/[email protected]
19+
with:
20+
fetch-depth: 0
21+
- uses: actions/setup-node@v3
22+
with:
23+
node-version: 18
24+
- name: Build and test
25+
run: |
26+
npm install
27+
npm run build
28+
npm run test

0 commit comments

Comments
 (0)