Skip to content

Commit

Permalink
feat(platform): platform is upgraded to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleygrimes committed Dec 10, 2022
1 parent 9785ad9 commit b9b872a
Show file tree
Hide file tree
Showing 19 changed files with 4,225 additions and 2,585 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x]
node-version: [18.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
Expand All @@ -32,14 +32,15 @@ jobs:
${{ runner.os }}-${{ matrix.node-version }}-workspace-
- name: Install Dependencies
run: yarn install --frozen-lockfile

lint:
runs-on: ${{ matrix.os }}

needs: [setup]
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x]
node-version: [18.x]

steps:
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -78,7 +79,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x]
node-version: [18.x]

steps:
- name: Use Node.js ${{ matrix.node-version }}
Expand Down Expand Up @@ -117,7 +118,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12.x]
node-version: [18.x]

steps:
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
5 changes: 4 additions & 1 deletion jest.config.js → jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module.exports = {
const { getJestProjects } = require('@nrwl/jest');

export default {
projects: [
...getJestProjects(),
'<rootDir>/packages/playground',
'<rootDir>/packages/in-memory-db',
'<rootDir>/packages/playground-e2e',
Expand Down
2 changes: 1 addition & 1 deletion jest.preset.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const nxPreset = require('@nrwl/jest/preset');
const nxPreset = require('@nrwl/jest/preset').default;
module.exports = {
...nxPreset,
testMatch: ['**/+(*.)+(spec|test).+(ts|js)?(x)'],
Expand Down
Loading

0 comments on commit b9b872a

Please sign in to comment.