Skip to content

Merge pull request #121 from stephengtuggy/sgt_2024-04-17_PyCharm #418

Merge pull request #121 from stephengtuggy/sgt_2024-04-17_PyCharm

Merge pull request #121 from stephengtuggy/sgt_2024-04-17_PyCharm #418

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:
os: [ windows-2022, ubuntu-22.04, macos-12, macos-13, macos-14 ]
node-version: [ 20.x, 21.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
- run: npm run test