fix(docs): standardize quotes in kitgrid.yaml and update navigation s… #71
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: Fixture Dry Run | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| dry-run: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| fixture: [basic, workflow] | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build TypeScript | |
| run: npm run build | |
| - name: Bundle action | |
| run: npm run bundle | |
| - name: Dry run CPython patch updates | |
| uses: ./ | |
| with: | |
| track: '3.13' | |
| dry_run: true | |
| paths: | | |
| fixtures/${{ matrix.fixture }}/** | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |