Skip to content

Commit

Permalink
Angular 18 upgrade changes (#367)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
4 people authored Nov 25, 2024
1 parent 3bc7e22 commit 0b91da7
Show file tree
Hide file tree
Showing 12 changed files with 5,572 additions and 6,874 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkout-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checkout-install-dep-build-dev-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
Expand Down
9 changes: 5 additions & 4 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// Prettier config options: https://prettier.io/docs/en/options.html
// Shared front-end config: https://git.pega.io/projects/FE/repos/configs/browse/packages/prettier-config/index.json

const pegaPrettierConfig = require('@pega/prettier-config');

module.exports = {
...pegaPrettierConfig,
printWidth: 150
plugins: ['@pega/prettier-config'],
printWidth: 150,
singleQuote: true,
trailingComma: 'none',
arrowParens: 'avoid'
};
Loading

0 comments on commit 0b91da7

Please sign in to comment.