Skip to content

Commit b9b872a

Browse files
committed
feat(platform): platform is upgraded to v9
1 parent 9785ad9 commit b9b872a

File tree

19 files changed

+4225
-2585
lines changed

19 files changed

+4225
-2585
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, windows-latest]
14-
node-version: [12.x]
14+
node-version: [18.x]
1515
steps:
1616
- name: Use Node.js ${{ matrix.node-version }}
1717
uses: actions/setup-node@v1
@@ -32,14 +32,15 @@ jobs:
3232
${{ runner.os }}-${{ matrix.node-version }}-workspace-
3333
- name: Install Dependencies
3434
run: yarn install --frozen-lockfile
35+
3536
lint:
3637
runs-on: ${{ matrix.os }}
3738

3839
needs: [setup]
3940
strategy:
4041
matrix:
4142
os: [ubuntu-latest, windows-latest]
42-
node-version: [12.x]
43+
node-version: [18.x]
4344

4445
steps:
4546
- name: Use Node.js ${{ matrix.node-version }}
@@ -78,7 +79,7 @@ jobs:
7879
strategy:
7980
matrix:
8081
os: [ubuntu-latest, windows-latest]
81-
node-version: [12.x]
82+
node-version: [18.x]
8283

8384
steps:
8485
- name: Use Node.js ${{ matrix.node-version }}
@@ -117,7 +118,7 @@ jobs:
117118
strategy:
118119
matrix:
119120
os: [ubuntu-latest, windows-latest]
120-
node-version: [12.x]
121+
node-version: [18.x]
121122

122123
steps:
123124
- name: Use Node.js ${{ matrix.node-version }}

jest.config.js renamed to jest.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
module.exports = {
1+
const { getJestProjects } = require('@nrwl/jest');
2+
3+
export default {
24
projects: [
5+
...getJestProjects(),
36
'<rootDir>/packages/playground',
47
'<rootDir>/packages/in-memory-db',
58
'<rootDir>/packages/playground-e2e',

jest.preset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const nxPreset = require('@nrwl/jest/preset');
1+
const nxPreset = require('@nrwl/jest/preset').default;
22
module.exports = {
33
...nxPreset,
44
testMatch: ['**/+(*.)+(spec|test).+(ts|js)?(x)'],

0 commit comments

Comments
 (0)