Skip to content

[pulsar-next] Get specs passing #15

[pulsar-next] Get specs passing

[pulsar-next] Get specs passing #15

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
env:
CI: true
jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node_arch:
- x64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: '20.11.1'
architecture: ${{ matrix.node_arch }}
# - name: Install windows-build-tools
# if: ${{ matrix.os == 'windows-latest' }}
# run: npm config set msvs_version 2022
- name: Install dependencies
run: npm i
- name: Run tests
run: npm test