docs(agent-feedback): file eight language-server findings from a thir… #1090
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: | |
| types: [opened, synchronize] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Install node | |
| id: node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - name: Install packages (node@${{ steps.node.outputs.node-version }}) | |
| run: pnpm install --frozen-lockfile | |
| - name: Run build | |
| run: pnpm run @ci:build | |
| - name: Run lint | |
| run: pnpm run @ci:lint | |
| test: | |
| runs-on: ubuntu-latest | |
| name: "test: node@${{ matrix.node }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [22, 24] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Install node | |
| id: node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: pnpm | |
| - name: Install packages (node@${{ steps.node.outputs.node-version }}) | |
| run: pnpm install --frozen-lockfile | |
| - name: Run tests | |
| run: xvfb-run -a pnpm run @ci:test | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: [build, test] | |
| if: "${{ github.repository_owner == 'marko-js' && github.event_name == 'push' }}" | |
| permissions: | |
| id-token: write | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Install node | |
| id: node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| cache: pnpm | |
| - name: Install packages (node@${{ steps.node.outputs.node-version }}) | |
| run: pnpm install --frozen-lockfile | |
| - name: Run release | |
| uses: changesets/action@v1 | |
| with: | |
| version: pnpm run @ci:version | |
| publish: pnpm run @ci:release | |
| commit: "[ci] release" | |
| title: "[ci] release" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| OVSX_PAT: ${{ secrets.OVSX_PAT }} | |
| VSCE_PAT: ${{ secrets.VSCE_PAT }} |