Skip to content

Commit

Permalink
chore: added CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakob Rosenberg committed Apr 22, 2021
1 parent 8c39f40 commit 63d448f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-suite-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test Suite CI

on: [push, pull_request]

jobs:
test:
name: Test on NodeJS v${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
node-version: [12.x, 14.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test

0 comments on commit 63d448f

Please sign in to comment.