Skip to content

Setup automated publishing to NPM #18

Setup automated publishing to NPM

Setup automated publishing to NPM #18

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ "master" ]
jobs:
test:
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Test
run: npm test