Skip to content

Commit

Permalink
fix: megalinter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
scolladon committed Jan 11, 2025
1 parent f78cac2 commit 0126c2c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/linters/.cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"appli",
"authprovider",
"authproviders",
"AUTOUPDATE",
"behaviour",
"benchmarkjs",
"biomejs",
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/on-main-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,16 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18

- uses: google/wireit@setup-github-actions-caching/v2

- name: Setup dependencies, cache and install
uses: ./.github/actions/install

- name: Set environment variables
run: |
echo "SF_DISABLE_AUTOUPDATE=true" >> $GITHUB_ENV
echo "SF_DISABLE_TELEMETRY=true" >> $GITHUB_ENV
echo "SF_DISABLE_AUTOUPDATE=true" >> "$GITHUB_ENV"
echo "SF_DISABLE_TELEMETRY=true" >> "$GITHUB_ENV"
- name: Build plugin
run: npm pack
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-merged-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:

- name: Set dev channel value
run: |
echo "CURRENT_VERSION=$(jq -r '.version' package.json)" >> "$GITHUB_ENV"
echo "DEV_CHANNEL=dev-${{ steps.pr-number.outputs.pr }}" >> "$GITHUB_ENV"
echo "CURRENT_VERSION=$(jq -r '.version' package.json)" >> ""$GITHUB_ENV""
echo "DEV_CHANNEL=dev-${{ steps.pr-number.outputs.pr }}" >> ""$GITHUB_ENV""
- name: Remove dist-tag
run: npm dist-tag rm sfdx-git-delta ${{ env.DEV_CHANNEL }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
id: pr-number

- name: Set dev channel value
run: echo "DEV_CHANNEL=dev-${{ steps.pr-number.outputs.pr }}" >> "$GITHUB_ENV"
run: echo "DEV_CHANNEL=dev-${{ steps.pr-number.outputs.pr }}" >> ""$GITHUB_ENV""

- name: Setup github user
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:

- name: Set environment variables
run: |
echo "SF_DISABLE_AUTOUPDATE=true" >> $GITHUB_ENV
echo "SF_DISABLE_TELEMETRY=true" >> $GITHUB_ENV
echo "SF_DISABLE_AUTOUPDATE=true" >> "$GITHUB_ENV"
echo "SF_DISABLE_TELEMETRY=true" >> "$GITHUB_ENV"
- name: Install cli
run: npm install -g ${{ matrix.cli }}
Expand Down
2 changes: 1 addition & 1 deletion messages/delta.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Attempt to delete the flow '%s' via destructiveChanges.xml may not work as expec

Generating incremental package

# info.CommandSucces
# info.CommandSuccess

Success

Expand Down
2 changes: 1 addition & 1 deletion src/commands/sgd/source/delta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export default class SourceDeltaGenerate extends SfCommand<SgdResult> {
const output: SgdResult = {
'output-dir': config.output,
}
let finalMessage = messages.getMessage('info.CommandSucces')
let finalMessage = messages.getMessage('info.CommandSuccess')
try {
const jobResult = await sgd(config)
for (const warning of jobResult.warnings) {
Expand Down

0 comments on commit 0126c2c

Please sign in to comment.