Skip to content

Commit

Permalink
ci(github): add github action build
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Feb 26, 2021
1 parent 58f8d5c commit 8a780ec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
name: Build
steps:
- uses: actions/checkout@v2

- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '12'

- run: yarn install --frozen-lockfile
name: Build

- name: Archive pre-built bindings
uses: actions/upload-artifact@v2
with:
name: binding
path: binding/**

0 comments on commit 8a780ec

Please sign in to comment.