Commit 5fc1fece by kewde

Merge branch 'github_workflows_build' of https://github.com/kaizhu256/node-sqlite3 into ci/github

parents bc5d794c 2d5c653d
name: build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
# - 12.x
- 14.x
# - 16.x
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: build
run: npm install --build-from-source
- uses: actions/upload-artifact@v2
with:
name: lib
path: lib
- name: test
run: npm test
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment