Skip to content

Bump postcss from 8.5.10 to 8.5.18 in /packages/tailwindcss-language-server #395

Bump postcss from 8.5.10 to 8.5.18 in /packages/tailwindcss-language-server

Bump postcss from 8.5.10 to 8.5.18 in /packages/tailwindcss-language-server #395

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
tests:
strategy:
fail-fast: false
matrix:
node: [18, 20, 22, 24]
os:
- namespace-profile-default
- namespace-profile-macos-arm64
- namespace-profile-windows-amd64
runs-on: ${{ matrix.os }}
name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }}
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
cache: 'pnpm'
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm install
- name: Run syntax tests
working-directory: packages/tailwindcss-language-syntax
run: pnpm run build && pnpm run test
- name: Run service tests
working-directory: packages/tailwindcss-language-service
run: pnpm run build && pnpm run test
- name: Run server tests
working-directory: packages/tailwindcss-language-server
run: pnpm run build && pnpm run test