Skip to content

Bump dompurify from 2.4.7 to 2.5.7 #517

Bump dompurify from 2.4.7 to 2.5.7

Bump dompurify from 2.4.7 to 2.5.7 #517

Workflow file for this run

name: Check and Publish
on:
push:
branches:
- main
pull_request:
branches:
- '**'
permissions:
contents: read
deployments: write
pull-requests: write
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- run: yarn install --frozen-lockfile
- run: yarn typecheck
- run: yarn spellcheck
- name: Check for uppercase section links
run: |
found="$(grep -rE '\(#[^\(]*[A-Z][^\(]*\)' ./docs || echo '')"
if [ "$found" = "" ]; then
exit 0
fi
echo -e "Found problematic uppercase section links:\n$found"
exit 1
- run: yarn build
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
if: '! github.event.pull_request.draft'
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: 2238a825c5aca59233eab1f221f7aefb
projectName: game-docs-v2
directory: ./build
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref || github.ref_name }}