Skip to content

Bump debug

Bump debug #184

Workflow file for this run

name: Node CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies & Run Tests
run: |
npm ci # clean install for CI environment
npm test
env:
CI: true