Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 4a8b1ac

Browse files
authored
Merge pull request #13 from openedx/jenkins/node-16-0c42bcb
build!: Upgrade to node v16
2 parents c984e10 + 35ff5ae commit 4a8b1ac

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,28 @@ name: Node CI
33
on:
44
push:
55
branches:
6-
- master
6+
- master
77
pull_request:
88
branches:
9-
- "**"
9+
- '**'
1010

1111
jobs:
12-
build:
12+
tests:
1313
runs-on: ubuntu-20.04
14+
strategy:
15+
matrix:
16+
node: [16]
1417
steps:
15-
- name: Checkout
16-
uses: actions/checkout@v2
18+
- name: Checkout
19+
uses: actions/checkout@v2
1720

18-
- name: Setup Nodejs
19-
uses: actions/setup-node@v2
20-
with:
21-
node-version: 14
21+
- name: Setup Nodejs
22+
uses: actions/setup-node@v2
23+
with:
24+
node-version: ${{ matrix.node }}
2225

23-
- name: Install dependencies
24-
run: npm install
26+
- name: Install dependencies
27+
run: npm install
2528
# The owning team will fix the issues and uncomment the steps after necessary linting and configuring changes
2629
- name: Lint
2730
run: npm run lint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v1
1717
with:
18-
node-version: 12
18+
node-version: 16
1919
- name: Install dependencies
2020
run: npm ci
2121
# TODO: Uncomment the steps once the repo have appropriate unit tests and lint config in place

0 commit comments

Comments
 (0)