Fix typo in role progression #342
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: CI | |
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 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: engineering-handbook | |
directory: ./build | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} |