Skip to content

Commit 0b91da7

Browse files
4manasamashmtumms2021389Vishal
authored
Angular 18 upgrade changes (#367)
* Angular 18 upgrade changes * typedefs package version update * actions/upload-artifact@v4 update --------- Co-authored-by: mashm <[email protected]> Co-authored-by: Siva Rama Krishna <[email protected]> Co-authored-by: Vishal <[email protected]>
1 parent 3bc7e22 commit 0b91da7

File tree

12 files changed

+5572
-6874
lines changed

12 files changed

+5572
-6874
lines changed

.github/workflows/checkout-and-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [18.x]
13+
node-version: [20.x]
1414

1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/checkout-install-dep-build-dev-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
node-version: [18.x]
23+
node-version: [20.x]
2424

2525
steps:
2626
- uses: actions/checkout@v4

.github/workflows/playwright.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
timeout-minutes: 60
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-node@v2
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
1414
with:
15-
node-version: '18.x'
15+
node-version: '20.x'
1616
- name: Install dependencies
1717
run: npm ci
1818
- name: Install Playwright
1919
run: npx playwright install --with-deps
20-
- uses: actions/upload-artifact@v2
20+
- uses: actions/upload-artifact@v4
2121
if: always()
2222
with:
2323
name: playwright-report

.prettierrc.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// Prettier config options: https://prettier.io/docs/en/options.html
22
// Shared front-end config: https://git.pega.io/projects/FE/repos/configs/browse/packages/prettier-config/index.json
33

4-
const pegaPrettierConfig = require('@pega/prettier-config');
5-
64
module.exports = {
7-
...pegaPrettierConfig,
8-
printWidth: 150
5+
plugins: ['@pega/prettier-config'],
6+
printWidth: 150,
7+
singleQuote: true,
8+
trailingComma: 'none',
9+
arrowParens: 'avoid'
910
};

0 commit comments

Comments
 (0)