chore(deps): update typescript-eslint monorepo to v8 (major) #16533
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: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm install && npm run bootstrap | |
- name: Build all packages | |
run: npm run compile | |
- name: Lint all packages | |
run: npm run lint | |
- name: Run Language Server tests | |
run: npx lerna run test --scope @prisma/language-server | |
- name: Run VS Code extension tests in headless mode | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: npm test "useLocalLS" | |
# 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: npm run 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: npm run shell:lint | |
- name: Catch version incompatibilities | |
if: matrix.os == 'ubuntu-latest' | |
run: npm run testScripts | |
- uses: codecov/codecov-action@v4 | |
with: | |
files: ./scripts/__tests__/coverage/clover.xml,./packages/language-server/coverage/clover.xml | |
flags: ${{ matrix.os }} | |
name: ${{ matrix.os }} |