Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Bump semver from 5.7.1 to 5.7.2 #106

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #106

Workflow file for this run

name: CI Tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest] # also include windows-latest once npm install is fixed
steps:
- uses: actions/checkout@v1
name: Checkout repo
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies
run: |
npm install -g typescript
npm install -g ts-node
npm install -g mocha
npm install
- name: Build code
run: npm run build
- name: Run all tests
run: npm run test