Skip to content

Run tests on macOS and Windows #5

Run tests on macOS and Windows

Run tests on macOS and Windows #5

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
node: [lts/*]
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
name: ubuntu
- os: macos-latest
name: macos
- os: windows-latest
name: windows
runs-on: ${{ matrix.os }}
name: ${{ matrix.name }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install -g bare-runtime bare-dev
- run: npm install
- run: bare-dev install
- run: npm test