feat(blog): show the app in the command-line post (Ubuntu-framed, localized) #156
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: [self-hosted, wavekat-ci] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| persist-credentials: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run cf:build | |
| env: | |
| SYNC_DOCS_TOKEN: ${{ secrets.SYNC_DOCS_TOKEN }} | |
| # Catch broken internal links and locale leaks before they ship. Runs | |
| # against the full build above (docs synced), so /docs/voice/* is checked. | |
| - run: npm run check:links |