Docs: Initial tutorial site scaffold with SDK tutorials, program layout, and interactive components #3
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
| --- | |
| jobs: | |
| quick-lint: | |
| name: 'Quick lint' | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - uses: 'actions/checkout@v4' | |
| - uses: 'actions/setup-node@v6' | |
| with: | |
| cache: 'npm' | |
| cache-dependency-path: 'docs/package-lock.json' | |
| node-version: 24 | |
| - run: 'npm ci' | |
| working-directory: 'docs' | |
| - run: 'npm run format:check' | |
| working-directory: 'docs' | |
| name: 'Quick lint' | |
| 'on': | |
| pull_request: null | |
| ... |