Skip to content

dirkjanfaber is running npm test #196

dirkjanfaber is running npm test

dirkjanfaber is running npm test #196

Workflow file for this run

name: npm-test
run-name: ${{ github.actor }} is running npm test
on: [push]
jobs:
npm-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14, 16, 18 ]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install standard --global
- run: npm test