chore(deps): update devdependencies (non-major) #17031
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 tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'LICENSE' | |
| - '**.md' | |
| - '.vscode/**' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/CODEOWNERS' | |
| - 'flake.nix' | |
| - 'flake.lock' | |
| - 'renovate.json' | |
| pull_request: | |
| paths-ignore: | |
| - 'LICENSE' | |
| - '**.md' | |
| - '.vscode/**' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/CODEOWNERS' | |
| - 'flake.nix' | |
| - 'flake.lock' | |
| - 'renovate.json' | |
| env: | |
| PRISMA_TELEMETRY_INFORMATION: 'language-tools continuous-integration.yml' | |
| jobs: | |
| test: | |
| name: Tests + Shellcheck | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 25 | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Build all packages | |
| run: pnpm build | |
| - name: Typecheck all packages | |
| run: pnpm typecheck | |
| - name: Lint all packages | |
| run: pnpm lint | |
| - name: Run unit tests in all packages | |
| run: pnpm test | |
| - name: Run VS Code extension E2E tests in headless mode | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: pnpm test:e2e | |
| # Playwright testing | |
| - name: Install Playwright browsers | |
| run: | | |
| cd packages/vscode | |
| npx playwright install chromium | |
| - name: Run Playwright UI tests | |
| uses: coactions/setup-xvfb@v1 | |
| with: | |
| run: pnpm test:playwright | |
| working-directory: packages/vscode | |
| env: | |
| CI: true | |
| - name: Upload Playwright report | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: playwright-report-${{ matrix.os }} | |
| path: packages/vscode/playwright-report/ | |
| retention-days: 30 | |
| - name: Catch shell script issues | |
| if: matrix.os == 'ubuntu-latest' | |
| run: pnpm shell:lint | |
| - name: Catch version incompatibilities | |
| if: matrix.os == 'ubuntu-latest' | |
| run: pnpm test:scripts | |
| - uses: codecov/codecov-action@v4 | |
| with: | |
| files: ./scripts/__tests__/coverage/clover.xml,./packages/language-server/coverage/clover.xml | |
| flags: ${{ matrix.os }} | |
| name: ${{ matrix.os }} |