docs: standardize release titles #13
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: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| theme: | |
| name: Theme contract | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 'lts/*' | |
| - run: npm test --prefix vscode | |
| vscode-highlighter: | |
| name: VS Code highlighter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 'lts/*' | |
| cache: npm | |
| cache-dependency-path: vscode-highlighter/package-lock.json | |
| - run: npm ci --prefix vscode-highlighter | |
| - run: npm test --prefix vscode-highlighter | |
| - run: npm run package --prefix vscode-highlighter | |
| vscode-complete: | |
| name: VS Code complete pack | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 'lts/*' | |
| - run: npm run package --prefix vscode-complete |