feat: Added support for node v16 (#530)

Co-authored-by: Mohammad Ahtasham ul Hassan <ahthassan74@gmail.com>
This commit is contained in:
edX requirements bot
2022-03-25 05:51:14 -04:00
committed by GitHub
parent 87230613c5
commit 918aa91e49
4 changed files with 27786 additions and 6081 deletions

View File

@@ -1,4 +1,3 @@
---
name: ci
on:
push:
@@ -6,23 +5,22 @@ on:
- master
pull_request:
jobs:
build:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12
npm-test:
- i18n_extract
- is-es5
- lint
- test
node: [12, 14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g npm@6
node-version: ${{ matrix.node }}
- run: npm install -g npm@8.x.x
- run: make requirements
- run: make test NPM_TESTS=build
- run: make test NPM_TESTS=${{ matrix.npm-test }}