[jwt] fix typo in plugin options name #1946
Workflow file for this run
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
name: Website Integrity | |
on: | |
pull_request: | |
paths: | |
- 'website/**' | |
branches: | |
- main | |
jobs: | |
website-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Fetch | |
run: git fetch origin main | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@v1 | |
with: | |
node-version-file: .node-version | |
- name: Build Packages | |
run: pnpm build | |
- name: Typecheck | |
run: pnpm --filter website run build | |
- name: Compare | |
run: git diff origin/${{ github.base_ref }}.. -- website/route-lockfile.txt | |
- name: Diff to file | |
if: always() | |
id: diff_result | |
run: | | |
OUTPUT=$(git diff origin/${{ github.base_ref }}.. -- website/route-lockfile.txt) | |
OUTPUT="${OUTPUT//'%'/'%25'}" | |
OUTPUT="${OUTPUT//$'\n'/'%0A'}" | |
OUTPUT="${OUTPUT//$'\r'/'%0D'}" | |
echo "result=$OUTPUT" >> $GITHUB_OUTPUT | |
- name: Publish a message | |
if: always() && contains(steps.diff_result.outputs.result, 'diff') | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
message: | | |
```diff | |
${{ steps.diff_result.outputs.result }} | |
``` |