Skip to content

[pulsar-next] Get specs passing #11

[pulsar-next] Get specs passing

[pulsar-next] Get specs passing #11

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, windows-latest]
node_arch:
- x64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
with:
node-version: '14'
architecture: ${{ matrix.node_arch }}
- name: Install windows-build-tools
if: ${{ matrix.os == 'windows-latest' }}
run: npm config set msvs_version 2019
- name: Install dependencies
run: npm i
- name: Run tests
run: npm test