Skip to content

Merge pull request #95 from stephengtuggy/dependabot/npm_and_yarn/wor… #360

Merge pull request #95 from stephengtuggy/dependabot/npm_and_yarn/wor…

Merge pull request #95 from stephengtuggy/dependabot/npm_and_yarn/wor… #360

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c #v3.6.0
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