Skip to content

Commit

Permalink
feat: Added support for node v16 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
edx-requirements-bot authored Apr 5, 2022
1 parent faa2c8d commit 8035f57
Show file tree
Hide file tree
Showing 3 changed files with 29,054 additions and 9,788 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
name: Default CI
on: [push, pull_request]
on:
push:
branches:
- 'master'
pull_request:

jobs:
build:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -11,7 +19,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
Expand Down
Loading

0 comments on commit 8035f57

Please sign in to comment.