Skip to content

Commit b029aae

Browse files
author
Adolfo R. Brandes
authored
Merge pull request #556 from openedx/bilalqamar95/node-v18-upgrade
2 parents ad814a2 + 48cfbe5 commit b029aae

File tree

5 files changed

+1871
-20256
lines changed

5 files changed

+1871
-20256
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,18 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
node: [16]
1512

1613
steps:
1714
- name: Checkout
1815
uses: actions/checkout@v3
1916
with:
2017
fetch-depth: 0
18+
- name: Setup Nodejs Env
19+
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
2120
- name: Setup Nodejs
2221
uses: actions/setup-node@v3
2322
with:
24-
node-version: ${{ matrix.node }}
23+
node-version: ${{ env.NODE_VER }}
2524
- name: Install dependencies
2625
run: npm ci
2726
- name: Lint
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#check package-lock file version
2+
3+
name: Lockfile Version check
4+
5+
on:
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
11+
jobs:
12+
version-check:
13+
uses: openedx/.github/.github/workflows/lockfileversion-check-v3.yml@master

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.20.0
1+
18

0 commit comments

Comments
 (0)