Skip to content

Clean up GitHub Actions workflows #266

Clean up GitHub Actions workflows

Clean up GitHub Actions workflows #266

Workflow file for this run

name: Build Binaries
on: pull_request
jobs:
build-windows:
runs-on: windows-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --production --build-from-source
build-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci --production --build-from-source
build-macos:
runs-on: macos-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: brew install unixodbc
- run: npm ci --production --build-from-source