-
-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/silent
- Loading branch information
Showing
117 changed files
with
23,811 additions
and
11,420 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
node_modules | ||
.next | ||
output | ||
coverage | ||
reports | ||
.github |
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
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,71 @@ | ||
--- | ||
name: Install | ||
description: Install dependencies | ||
|
||
inputs: | ||
prod-context: | ||
required: false | ||
description: drive installation mode | ||
default: "false" | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: ⚙️ Enable Corepack | ||
run: corepack enable | ||
shell: bash | ||
|
||
- name: Cache prep | ||
id: yarn-config | ||
run: | | ||
echo "CACHE_FOLDER=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | ||
echo "node-version="node-$(node --version)"" >> $GITHUB_OUTPUT | ||
shell: bash | ||
env: | ||
YARN_ENABLE_GLOBAL_CACHE: 'false' | ||
|
||
- name: Restore yarn cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.yarn-config.outputs.CACHE_FOLDER }} | ||
key: yarn-download-cache-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }} | ||
restore-keys: | | ||
yarn-download-cache- | ||
- name: Restore node_modules | ||
id: yarn-nm-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: node_modules | ||
key: yarn-nm-cache-${{ runner.os }}-${{ steps.yarn-config.outputs.node-version }}-${{ github.ref }}-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }} | ||
|
||
- name: Restore yarn install state | ||
id: yarn-install-state-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: .yarn/ | ||
key: yarn-install-state-cache-${{ runner.os }}-${{ steps.yarn-config.outputs.node-version }}-${{ github.ref }}-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }} | ||
|
||
- name: Install dependencies in production mode | ||
if: ${{ inputs.prod-context == 'true' }} | ||
run: yarn install --immutable --check-cache --prod | ||
shell: bash | ||
env: | ||
# Overrides/align yarnrc.yml options (v3, v4) for a CI context | ||
YARN_ENABLE_GLOBAL_CACHE: 'false' # Use local cache folder to keep downloaded archives | ||
YARN_NM_MODE: 'hardlinks-local' # Reduce node_modules size | ||
YARN_INSTALL_STATE_PATH: '.yarn/install-state.gz' # Might speed up resolution step when node_modules present | ||
# Other environment variables | ||
HUSKY: '0' # By default do not run HUSKY install | ||
|
||
- name: Install dependencies in integration mode | ||
if: ${{ inputs.prod-context == 'false' }} | ||
run: yarn install --immutable --check-cache | ||
shell: bash | ||
env: | ||
# Overrides/align yarnrc.yml options (v3, v4) for a CI context | ||
YARN_ENABLE_GLOBAL_CACHE: 'false' # Use local cache folder to keep downloaded archives | ||
YARN_NM_MODE: 'hardlinks-local' # Reduce node_modules size | ||
YARN_INSTALL_STATE_PATH: '.yarn/install-state.gz' # Might speed up resolution step when node_modules present | ||
# Other environment variables | ||
HUSKY: '0' # By default do not run HUSKY install |
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 |
---|---|---|
@@ -1,12 +1,19 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
commit-message: | ||
prefix: "build" | ||
|
||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "monday" | ||
versioning-strategy: increase | ||
commit-message: | ||
prefix: "build" | ||
allow: | ||
- dependency-type: "all" | ||
- dependency-type: "all" |
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,7 @@ | ||
--- | ||
# You can see all available properties here: https://github.com/bridgecrewio/checkov#configuration-using-a-config-file | ||
quiet: true | ||
skip-check: | ||
- CKV_DOCKER_2 | ||
- CKV2_GHA_1 | ||
- CKV_GHA_7 |
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,149 @@ | ||
{ | ||
"ignorePaths": [ | ||
"CHANGELOG.md", | ||
"**/node_modules/**", | ||
"**/.git/**", | ||
"megalinter", | ||
"**/yarn.lock", | ||
"**/.yarnrc.yml" | ||
], | ||
"language": "en", | ||
"noConfigSearch": true, | ||
"version": "0.2", | ||
"words": [ | ||
"Afile", | ||
"CODECOV", | ||
"CODEOWNERS", | ||
"Cherfaoui", | ||
"Colladon", | ||
"Commitlint", | ||
"Corepack", | ||
"corepack", | ||
"FORCEIGNORE", | ||
"FORCEINCLUDE", | ||
"FULLNAME", | ||
"Flexi", | ||
"hardlinks", | ||
"Iframe", | ||
"METAFILE", | ||
"Mehdi", | ||
"Nimn", | ||
"Omni", | ||
"Parens", | ||
"SFDX", | ||
"STATICRESOURCE", | ||
"Scontrol", | ||
"Sebastien", | ||
"Sfdx", | ||
"Translationline", | ||
"Unpackaged", | ||
"Wavehandler", | ||
"amannn", | ||
"anotherignore", | ||
"apexskier", | ||
"apiversion", | ||
"appli", | ||
"authprovider", | ||
"authproviders", | ||
"behaviour", | ||
"brqh", | ||
"codeclimate", | ||
"codecov", | ||
"commandsstop", | ||
"commitlint", | ||
"contentassets", | ||
"customindex", | ||
"datacategorygroup", | ||
"datacategorygroups", | ||
"destructiveignore", | ||
"destructiveinclude", | ||
"emailservices", | ||
"flexipage", | ||
"flexipages", | ||
"flowtest", | ||
"flowtests", | ||
"flowtype", | ||
"forceignore", | ||
"forceinclude", | ||
"friendlyname", | ||
"geodata", | ||
"iframe", | ||
"ignorewarnings", | ||
"iife", | ||
"indx", | ||
"lcov", | ||
"linebreak", | ||
"linify", | ||
"lintstagedrc", | ||
"loglevel", | ||
"lwcc", | ||
"mdapi", | ||
"megalinter", | ||
"mehdisfdc", | ||
"metafile", | ||
"mjyhjbm", | ||
"mkdirs", | ||
"mocharc", | ||
"mockprune", | ||
"multilines", | ||
"mutingpermissionset", | ||
"mutingpermissionsets", | ||
"myexperiencebundle", | ||
"nonblock", | ||
"notexist", | ||
"notificationtypes", | ||
"notiftype", | ||
"numstat", | ||
"nycrc", | ||
"oauthcustomscope", | ||
"oauthcustomscopes", | ||
"oclif", | ||
"omni", | ||
"omnistudio", | ||
"oxsecurity", | ||
"pastsha", | ||
"permissionset", | ||
"permissionsetgroup", | ||
"permissionsetgroups", | ||
"permissionsets", | ||
"piquouze", | ||
"postdestructivechanges", | ||
"postpack", | ||
"predestructivechanges", | ||
"predicat", | ||
"quotepath", | ||
"recentsha", | ||
"rulesets", | ||
"samlssoconfig", | ||
"samlssoconfigs", | ||
"scolladon", | ||
"scontrols", | ||
"sfdx", | ||
"sgdignore", | ||
"staticresources", | ||
"stefanzweifel", | ||
"struc", | ||
"subfolders", | ||
"targetname", | ||
"testkit", | ||
"testlevel", | ||
"testtest", | ||
"trivyignore", | ||
"unmanaged", | ||
"unmocked", | ||
"unpackaged", | ||
"venv", | ||
"wagoid", | ||
"wapp", | ||
"wcomp", | ||
"wdash", | ||
"wdpr", | ||
"wearerequired", | ||
"weblink", | ||
"weblinks", | ||
"wlens", | ||
"xmlbuilder", | ||
"yarnrc", | ||
"\u00c0gain" | ||
] | ||
} |
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,13 @@ | ||
{ | ||
"threshold": 0, | ||
"reporters": ["html", "markdown"], | ||
"ignore": [ | ||
"**/node_modules/**", | ||
"**/.git/**", | ||
"**/*cache*/**", | ||
"**/.github/**", | ||
"**/report/**", | ||
"**/img/**", | ||
"**/__tests__/**" | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.