-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from openedx/jawayria/support-node-16
feat: Added support for Node 16
- Loading branch information
Showing
6 changed files
with
37,924 additions
and
14,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,23 @@ on: | |
- "**" | ||
|
||
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 i -g npm@5.8.0 | ||
run: npm i -g npm@8.x.x | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
@@ -51,6 +55,7 @@ jobs: | |
username: ${{secrets.EDX_SMTP_USERNAME}} | ||
password: ${{secrets.EDX_SMTP_PASSWORD}} | ||
subject: CI workflow failed in ${{github.repository}} | ||
to: tnl-squad@edx.org | ||
to: teaching-and-learning@edx.opsgenie.net | ||
from: github-actions <[email protected]> | ||
body: CI workflow in ${{github.repository}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ jobs: | |
release: | ||
name: Release | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.