Skip to content

Improve YAML Module - Automated by Actions Bot. (#185) #140

Improve YAML Module - Automated by Actions Bot. (#185)

Improve YAML Module - Automated by Actions Bot. (#185) #140

Workflow file for this run

name: CI / Build & Test - macOS
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
macos:
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 21.x, 22.x]
name: Running Tests on Node.js Version ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm start