Skip to content

prepare v4.0.0

prepare v4.0.0 #7

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
full:
name: Node.js Test Suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12, '*']
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test