Skip to content

Node.js CI

Node.js CI #141

Workflow file for this run

name: Node.js CI
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [12.x, 14.x, 15.x]
runs-on: ${{ matrix.os }}
env:
DEBUG_PROXY: 1
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 ci
- run: make test