Skip to content

Release 3.9.17

Release 3.9.17 #111

Workflow file for this run

# From https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs-or-python
name: Node.js CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12, 14, 16, 18, 19]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- run: npm test
# It seems that npm for node v6 does not have the ci command.
testv6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 6
uses: actions/setup-node@v3
with:
node-version: 6
- name: Install dependencies
run: npm install
- run: npm test