Skip to content

Commit

Permalink
Merge pull request #304 from macbre/node.js-16
Browse files Browse the repository at this point in the history
Test using Node.js 16.x
  • Loading branch information
macbre committed Jul 28, 2021
2 parents b7655c5 + af6b5d4 commit 6b567cc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
Expand All @@ -18,12 +17,16 @@ jobs:
- "12.x"
- "14.x"
- "15.x"
- "16.x"

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@master
with:
cache: npm
node-version: ${{ matrix.node-version }}

- run: npm ci
- run: npm test

0 comments on commit 6b567cc

Please sign in to comment.