Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to Angular 13 #494

Merged
merged 40 commits into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
30e4d8d
initial commit
achilehero Dec 7, 2021
ee3a9a5
Merge remote-tracking branch 'origin/master' into feature/angular-13
achilehero Dec 7, 2021
309a82f
remove ~ from "problem" imports
achilehero Dec 7, 2021
5d3fa09
sha fix
achilehero Dec 7, 2021
bd72ab0
formatting
achilehero Dec 7, 2021
832754c
fix for css imports
achilehero Dec 8, 2021
640afd9
Merge remote-tracking branch 'origin/master' into feature/angular-13
achilehero Dec 8, 2021
764b4a3
fix local e2e
achilehero Dec 8, 2021
3ce8fbc
try fixes for jest tests
achilehero Dec 8, 2021
99243c1
add rootDir in transformIgnorePatterns
dorsaffrigui Dec 10, 2021
c42a3a1
formatting
dorsaffrigui Dec 10, 2021
2fbbe78
fix test
achilehero Dec 10, 2021
5c51523
formatting
dorsaffrigui Dec 10, 2021
fb506be
formatting
achilehero Dec 10, 2021
4197bf7
Merge branch 'feature/angular-13' of github.com:fusionfabric/finastra…
achilehero Dec 10, 2021
28b194d
update snapshots
dorsaffrigui Dec 10, 2021
05708d7
generate a new snapshot for card
dorsaffrigui Dec 10, 2021
edcb5f7
update nodejs version
achilehero Dec 10, 2021
37e49a9
Merge branch 'feature/angular-13' of github.com:fusionfabric/finastra…
achilehero Dec 10, 2021
fb2beea
update node v to 16 on all workflows
achilehero Dec 10, 2021
f572fa8
delete avatar snapshot
dorsaffrigui Dec 10, 2021
ed2980e
generate a new avatar snapshot
dorsaffrigui Dec 10, 2021
e72abde
delete snapshots
dorsaffrigui Dec 10, 2021
c74853f
fix snapshots
dorsaffrigui Dec 10, 2021
1d43178
fix some versions
achilehero Dec 10, 2021
62fa27a
Merge branch 'feature/angular-13' of github.com:fusionfabric/finastra…
achilehero Dec 10, 2021
1272f43
fix sha
achilehero Dec 10, 2021
515265a
fix theme builder
achilehero Dec 13, 2021
1aa00c0
Merge remote-tracking branch 'origin/master' into feature/angular-13
achilehero Dec 13, 2021
108079e
formatting
achilehero Dec 13, 2021
667ba23
use layout-bp new path
dorsaffrigui Dec 13, 2021
245ef7a
cleanup
achilehero Dec 13, 2021
4963994
remove tsickle lib
dorsaffrigui Dec 14, 2021
209f1e1
update docs
achilehero Dec 14, 2021
ee073d1
Merge branch 'feature/angular-13' of github.com:fusionfabric/finastra…
achilehero Dec 14, 2021
08f9dad
use node 16 in trigger-release workflow
dorsaffrigui Dec 14, 2021
836c2b8
cleanup
achilehero Dec 14, 2021
4728a46
Merge branch 'feature/angular-13' of github.com:fusionfabric/finastra…
achilehero Dec 14, 2021
b782bf8
Merge remote-tracking branch 'origin/master' into feature/angular-13
achilehero Dec 14, 2021
f9826ed
fix sha
achilehero Dec 14, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: 'CodeQL'

on:
push:
branches: [ master ]
branches: [master]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [master]
schedule:
- cron: '39 10 * * 0'

Expand All @@ -32,39 +32,39 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
language: ['javascript']
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release
#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
2 changes: 1 addition & 1 deletion .github/workflows/create-release-wc-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Version up
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '15'
node-version: '16'
- name: Cypress run
uses: cypress-io/github-action@v2
with:
Expand All @@ -22,9 +22,9 @@ jobs:
wait-on: 'http://localhost:4200'
- uses: actions/upload-artifact@v2
# Replace if and path when getting updated snapshots
# if: always()
#if: always()
if: failure()
with:
name: cypress-screenshots
# path: cypress/snapshots
#path: cypress/snapshots
path: cypress/snapshots/**/__diff_output__
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Use Node.js 15.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '15'
node-version: '16'
- name: Cache Node.js modules
uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-wc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://check.npmjs.org/
- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '15'
node-version: '16'
- name: Cache Node.js modules
uses: actions/cache@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16
registry-url: https://registry.npmjs.org/
- name: Build Storybook
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/trigger-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
steps:
# Setup
- uses: actions/checkout@v1
- name: Use Node.js 15.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '15'
node-version: '16'
- name: Install dependencies
run: npm ci --loglevel=error --ignore-scripts --omit=prod
- uses: oleksiyrudenko/gha-git-credentials@v2-latest
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand All @@ -42,7 +43,7 @@ finastra-design-system.iml
.DS_Store
Thumbs.db

themes/angular-theme/prebuit-theme
themes/angular-theme/prebuilt-theme

# build
/_site/
Expand Down
Loading