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 7622e06
Show file tree
Hide file tree
Showing 19 changed files with 4,231 additions and 2,591 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ 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
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@main
with:
fetch-depth: 3
- name: Get origin master
Expand All @@ -32,21 +32,22 @@ 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 }}
uses: actions/setup-node@v1
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@main
with:
fetch-depth: 3
- name: Get origin master
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,14 +118,14 @@ 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
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v2
- uses: actions/checkout@main
with:
fetch-depth: 3
- name: Get origin master
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 7622e06

Please sign in to comment.