Skip to content

Prepare release automation #4

Prepare release automation

Prepare release automation #4

Workflow file for this run

name: Build
on: pull_request
jobs:
build-matrix:
strategy:
matrix:
node-version:
- 18.x
os:
- windows-latest
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
if: ${{ startsWith(matrix.os, 'macos') }}
run: brew install unixodbc
- name: Build package
run: npm ci --production --build-from-source