From f63f8ee08191b3dd57c5a5aa1a3ebdd491bc4203 Mon Sep 17 00:00:00 2001 From: edX requirements bot Date: Thu, 10 Feb 2022 08:12:06 -0500 Subject: [PATCH] build: Added support for node v16 --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e77fc88..ecd9721 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,11 @@ name: Default 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 @@ -11,7 +14,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: Validate package-lock.json changes