Skip to content

Commit

Permalink
build: add support for node 16 (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsobanjaved authored Apr 11, 2022
1 parent 6905cfd commit 4812f61
Show file tree
Hide file tree
Showing 3 changed files with 26,407 additions and 40 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@ name: node_js CI
on: [push, pull_request]

jobs:
build:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nodejs
uses: actions/setup-node@v1
with:
node-version: 12
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Lint
Expand Down
Loading

0 comments on commit 4812f61

Please sign in to comment.