Skip to content

feat: Merge pull request #11 from darkgl0w/fix-and-features #2

feat: Merge pull request #11 from darkgl0w/fix-and-features

feat: Merge pull request #11 from darkgl0w/fix-and-features #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16, 17]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install --ignore-scripts
- name: Run tests
run: |
npm run test