Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Update README.md

Update README.md #123

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{matrix.node-version}}
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- run: npm install
- run: npm run build
- run: npm test
env:
CI: true