-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: angular 17 and 18 compatibility * feat: converted repo to yarn v4 * fix: alignment issues when charts are server-side rendered * fix: misc angular upgrade issues * fix: deprecate rfdc * fix: normalized eslint configuration * fix: update karma configs --------- Co-authored-by: sreyaswimlane <[email protected]>
- Loading branch information
1 parent
ff89cfe
commit 09cb845
Showing
46 changed files
with
15,306 additions
and
29,169 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"root": true, | ||
"extends": ["@swimlane", "prettier"], | ||
"overrides": [ | ||
{ | ||
"files": ["*.ts"], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": ["./tsconfig.json"] | ||
}, | ||
"extends": [ | ||
"@swimlane/eslint-config/typescript", | ||
"plugin:@angular-eslint/recommended", | ||
"plugin:@angular-eslint/template/process-inline-templates", | ||
"prettier" | ||
], | ||
"rules": { | ||
"@typescript-eslint/no-empty-object-type": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-unused-vars": "off", | ||
"@angular-eslint/directive-class-suffix": "off", | ||
"@angular-eslint/component-class-suffix": "off", | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"@angular-eslint/no-input-rename": "off", | ||
"@angular-eslint/no-output-native": "off", | ||
"@angular-eslint/use-lifecycle-interface": "off", | ||
"@angular-eslint/no-output-on-prefix": "off", | ||
"@typescript-eslint/consistent-type-imports": "off", | ||
"@typescript-eslint/no-duplicate-enum-values": "off" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,30 +6,39 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
node-version: 12.x | ||
|
||
- name: Install | ||
uses: bahmutov/npm-install@v1 | ||
|
||
- name: Build | ||
run: | | ||
npm run build | ||
env: | ||
CI: true | ||
|
||
- name: Test | ||
run: | | ||
npm run ci --if-present | ||
env: | ||
CI: true | ||
|
||
- name: Prepare and deploy | ||
run: | | ||
npm run deploy -- --name="Swimlane" --email="[email protected]" | ||
if: ${{ github.ref == 'refs/heads/master' }} | ||
env: | ||
CI: true | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.17.0 | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Install Yarn | ||
run: corepack prepare [email protected] --activate | ||
|
||
- name: Install dependencies | ||
run: yarn install --immutable | ||
|
||
- name: Build | ||
run: | | ||
yarn build | ||
env: | ||
CI: true | ||
|
||
- name: Test | ||
run: | | ||
yarn ci | ||
env: | ||
CI: true | ||
|
||
- name: Prepare and deploy | ||
run: | | ||
yarn deploy -- --name="Swimlane" --email="[email protected]" | ||
if: ${{ github.ref == 'refs/heads/master' }} | ||
env: | ||
CI: true | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
documentation.json | ||
.vscode/ | ||
.angular/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.