Skip to content

Merge pull request #98 from stephengtuggy/dependabot/github_actions/a… #371

Merge pull request #98 from stephengtuggy/dependabot/github_actions/a…

Merge pull request #98 from stephengtuggy/dependabot/github_actions/a… #371

Workflow file for this run

name: Node
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-2022
node-version: 14.x
- os: ubuntu-22.04
node-version: 14.x
- os: macos-latest
node-version: 14.x
steps:
- name: checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 #v3.6.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d #v3.8.1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
# Leave tests commented out for now, since they are failing
#- run: npm test