Skip to content

add second veridise audit to the repo #483

add second veridise audit to the repo

add second veridise audit to the repo #483

Workflow file for this run

name: Check and Publish
on:
push:
branches:
- develop
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
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: 2238a825c5aca59233eab1f221f7aefb
projectName: sygma-docs
directory: ./build
gitHubToken: ${{ secrets.GITHUB_TOKEN }}