Skip to content

Commit

Permalink
Add CI workflow in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenicholson committed Feb 22, 2022
1 parent 96a6e55 commit 3ab9305
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Node.js CI

on: push

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x, 13.x, 14.x, 15.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- run: npm run build --if-present
- run: npm test

0 comments on commit 3ab9305

Please sign in to comment.