Skip to content

Bump to version 2.3.9 (#119) #255

Bump to version 2.3.9 (#119)

Bump to version 2.3.9 (#119) #255

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and
# run tests across different versions of node
name: Tests
on: [ push, pull_request ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 8.x, 10.x, 11.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test