Skip to content

Add "How to" to the "Career Development" section #326

Add "How to" to the "Career Development" section

Add "How to" to the "Career Development" section #326

Workflow file for this run

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: 16
- 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: engineering-handbook
directory: ./build
gitHubToken: ${{ secrets.GITHUB_TOKEN }}