Skip to content

Commit

Permalink
feat: node16 support (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
aht007 authored and ansabgillani committed Apr 27, 2022
1 parent ca95b02 commit 4060d99
Show file tree
Hide file tree
Showing 7 changed files with 5,419 additions and 9,130 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,28 @@ name: node_js CI
on:
push:
branches:
- master
- master
pull_request:
branches:
- '**'
- '**'

jobs:
build:
tests:
runs-on: ubuntu-20.04
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: Setup npm
run: npm install -g npm@6
run: npm i -g npm@8.5.x

- name: Install dependencies
run: npm ci
Expand Down
Loading

0 comments on commit 4060d99

Please sign in to comment.