Skip to content

Merge pull request #111 from stephengtuggy/dependabot/github_actions/… #405

Merge pull request #111 from stephengtuggy/dependabot/github_actions/…

Merge pull request #111 from stephengtuggy/dependabot/github_actions/… #405

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@9bb56186c3b09b4f86b1c65136769dd318469633 #v4.1.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 #v4.0.2
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