Skip to content

Commit

Permalink
Merge branch 'release/v0.11.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
musicEnfanthen committed Dec 18, 2023
2 parents ce46a96 + 707604b commit 680133d
Show file tree
Hide file tree
Showing 128 changed files with 11,076 additions and 7,180 deletions.
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,27 @@ updates:
open-pull-requests-limit: 15
labels:
- 'npm dependencies'
groups:
angular-cli/devkit:
patterns:
- '@angular/cli'
- '@angular-devkit/*'
angular:
patterns:
- '@angular/*'
exclude-patterns:
- '@angular/cli'
angular-eslint:
patterns:
- '@angular-eslint/*'
fortawesome:
patterns:
- '@fortawesome/*'
exclude-patterns:
- '@fortawesome/angular-fontawesome'
commitlint:
patterns:
- '@commitlint/*'
typescript-eslint:
patterns:
- '@typescript-eslint/*'
6 changes: 3 additions & 3 deletions .github/workflows/ci_optimize_svgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # ratchet:actions/checkout@v3
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3
- name: Optimize SVGs
uses: ericcornelissen/svgo-action@ee5df7574a3256289c336be4a5e3118666096c86 # ratchet:ericcornelissen/svgo-action@v3
uses: ericcornelissen/svgo-action@7a6e0d9e931266b92d0bd87bca0b84123306f91d # ratchet:ericcornelissen/svgo-action@v4.0.4
id: svgo
with:
repo-token: ${{secrets.GITHUB_TOKEN}}
svgo-version: 3 # defaults to 2
- name: Commit optimizations
uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a # ratchet:stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # ratchet:stefanzweifel/git-auto-commit-action@v4
if: ${{steps.svgo.outputs.DID_OPTIMIZE}}
with:
commit_message: 'fix(assets): optimize ${{steps.svgo.outputs.OPTIMIZED_COUNT}} SVG(s) with SVGO'
24 changes: 12 additions & 12 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.21, 16.18, 18.x, 20.x]
node-version: [18.13, 20.9] # TODO (when Angular allows it): 21.x
steps:
- name: Checkout repo
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # ratchet:actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3
with:
fetch-depth: 0 # Get all history and branches
- name: Set up node ${{ matrix.node-version}}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # ratchet:actions/setup-node@v3
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # ratchet:actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand All @@ -41,13 +41,13 @@ jobs:
run: |
yarn run test:ci
- name: Upload code coverage
if: matrix.node-version == 16.18 # upload coverage report for current node version only
uses: codecov/codecov-action@894ff025c7b54547a9a2a1e9f228beae737ad3c2 # ratchet:codecov/[email protected].3
if: matrix.node-version == 20.9 # upload coverage report for current node version only
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # ratchet:codecov/[email protected].4
with:
flags: unittests
env_vars: ${{ matrix.os }}, ${{ matrix.node-version }}
- name: Perform SonarCloud Analysis
if: matrix.node-version == 16.18 && github.event_name != 'pull_request' && github.repository_owner == env.MAIN_REPO_OWNER # perform SonarCloud analysis only for current node version and not with pull requests or forks(token issue)
if: matrix.node-version == 20.9 && github.event_name != 'pull_request' && github.repository_owner == env.MAIN_REPO_OWNER # perform SonarCloud analysis only for current node version and not with pull requests or forks(token issue)
uses: SonarSource/sonarcloud-github-action@db501078e936e4b4c8773d1bb949ba9ddb7b6b6a # ratchet:SonarSource/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
Expand All @@ -65,12 +65,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.18]
node-version: [20.9]
steps:
- name: Checkout repo
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # ratchet:actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3
- name: Set up node ${{ matrix.node-version}}
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # ratchet:actions/setup-node@v3
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # ratchet:actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
Expand All @@ -95,7 +95,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.18]
node-version: [20.9]
steps:
- name: Get tag version
id: get_version
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # ratchet:actions/checkout@v3
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v3
with:
fetch-depth: 2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # ratchet:github/codeql-action/init@v2
uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # ratchet:github/codeql-action/init@v2.13.4
with:
languages: ${{ matrix.language }}
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # ratchet:github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a # ratchet:github/codeql-action/autobuild@v2.13.4
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@29b1f65c5e92e24fe6b6647da1eaabe529cec70f # ratchet:github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a # ratchet:github/codeql-action/analyze@v2.13.4
with:
category: '/language:${{matrix.language}}'
Loading

0 comments on commit 680133d

Please sign in to comment.