Skip to content

build: setup GitHub CI #1

build: setup GitHub CI

build: setup GitHub CI #1

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
include:
- node: 10.x
- node: 12.x
- node: 14.x
- node: 16.x
- node: 18.x
- node: 20.x
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- name: Install Node.js
uses: actions/setup-node
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test