chore: update erc20 handlers on testnet (#165) #477
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: 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 }} |