Skip to content

Commit 70536da

Browse files
feat: upgraded to node v18, added .nvmrc and updated workflows (#977)
* feat: upgraded to node v18, added .nvmrc and updated workflows * refactor: updated packages * refactor: updated packages * refactor: updated packages * refactor: updated frontend-build * refactor: updated packages * refactor: updated packages * refactor: updated packages and resolved typescript issue * refactor: updated enterprise, platform packages * refactor: updated packages and snapshots * refactor: updated packages & lockfileversion workflow * refactor: updated postcss * refactor: pinned node version to 18.15 * refactor: reverted frontend-build version & updated packages * refactor: updated frontend-build * refactor: updated frontend-build to v12.9.0.alpha.1 * refactor: updated packages and snapshots * refactor: updated testing-library dom & jest-dom packages * refactor: updated packages and snapshots * refactor: updated nvmrc & removed babel.config --------- Co-authored-by: Adam Stankiewicz <agstanki@gmail.com>
1 parent 71de4bc commit 70536da

File tree

6 files changed

+608
-22582
lines changed

6 files changed

+608
-22582
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,15 @@ on:
99
jobs:
1010
tests:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
node: [16]
15-
npm: [8.5.x]
1612
steps:
1713
- name: Checkout
18-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
15+
- name: Setup Nodejs Env
16+
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
1917
- name: Setup Nodejs
20-
uses: actions/setup-node@v1
18+
uses: actions/setup-node@v3
2119
with:
22-
node-version: ${{ matrix.node }}
23-
- run: npm install -g npm@${{ matrix.npm }}
20+
node-version: ${{ env.NODE_VER }}
2421
- name: Validate no uncommitted package-lock changes
2522
run: make validate-no-uncommitted-package-lock-changes
2623
- name: Install dependencies

.github/workflows/lockfileversion-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ on:
1010

1111
jobs:
1212
version-check:
13-
uses: edx/.github/.github/workflows/lockfileversion-check.yml@master
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
1+
18

babel.config.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)