Skip to content

Commit 137ae97

Browse files
authored
fix: fixup for linting as this is didnt work (#447)
* fix: fixup for linting as this is didnt work * ci: remove version 16 of node * style: update format of package
1 parent 8336c9c commit 137ae97

File tree

6 files changed

+541
-3969
lines changed

6 files changed

+541
-3969
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.github/workflows/ngx-aws-deploy-s3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node-version: [16.x, 18.x]
14+
node-version: [18.x]
1515

1616
env:
1717
NX_BRANCH: ${{ github.event.number }}

.github/workflows/ngx-aws-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [16.x, 18.x]
13+
node-version: [18.x]
1414

1515
env:
1616
NX_BRANCH: ${{ github.event.number }}

nx.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
},
4848
"test": {
4949
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
50+
},
51+
"lint": {
52+
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
5053
}
5154
},
5255
"namedInputs": {
@@ -61,7 +64,8 @@
6164
"default",
6265
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
6366
"!{projectRoot}/tsconfig.spec.json",
64-
"!{projectRoot}/jest.config.[jt]s"
67+
"!{projectRoot}/jest.config.[jt]s",
68+
"!{projectRoot}/.eslintrc.json"
6569
]
6670
}
6771
}

0 commit comments

Comments
 (0)