Skip to content

Commit

Permalink
build: added support for node v16
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawayria committed Feb 15, 2022
1 parent 5eee37d commit a9551db
Show file tree
Hide file tree
Showing 2 changed files with 2,181 additions and 358 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
name: Default CI
on: [push, pull_request]
on:
push:
branches:
- 'master'
pull_request:
branches:
- '**'
jobs:
build:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -11,7 +20,7 @@ jobs:
- name: Setup Nodejs
uses: actions/setup-node@v2
with:
node-version: 12
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Lint
Expand Down
Loading

0 comments on commit a9551db

Please sign in to comment.