Skip to content

Commit

Permalink
Add github CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
depili committed Dec 2, 2023
1 parent 30530cd commit 9436716
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build binaries
on: [push]

jobs:
runs-on: ubuntu-20.04
outputs:
version: pkg.tgz
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.17'

- name: build & package
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
yarn update
yarn companion-module-build

0 comments on commit 9436716

Please sign in to comment.