Skip to content

Commit

Permalink
Add temporary github workflow to verify build
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Aug 30, 2023
1 parent 7dd851d commit 9244bbb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/client-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Temporary workflow for this branch -- we may want to build the client in the main
# workflow (cibuild.yml).
name: OTP Client CI build
on:
push:
branches:
- debug-client-next
#paths:
# - client-next/**
pull_request:
branches:
- debug-client-next
jobs:
build-linux:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Build and test
run: |
npm install
npm run build
npm run test

0 comments on commit 9244bbb

Please sign in to comment.