docs: pure chrome baseline through A6.194 #658
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: quality | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout altai-vscode | |
| uses: actions/checkout@v4 | |
| with: | |
| path: altai-vscode | |
| # Shared packages are not on npm yet; local file: deps expect a sibling | |
| # altai-app checkout (see package.json @altai/* file: paths). | |
| - name: Checkout altai-app (shared packages) | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: altaidevorg/altai-app | |
| path: altai-app-main | |
| token: ${{ github.token }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| cache-dependency-path: altai-vscode/package-lock.json | |
| - name: Install and verify | |
| working-directory: altai-vscode | |
| run: | | |
| npm ci | |
| npm run verify |