Skip to content

refactor(vite): unify CSS variable inline-style type #482

refactor(vite): unify CSS variable inline-style type

refactor(vite): unify CSS variable inline-style type #482

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
timeout-minutes: 45
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright Chromium
run: pnpm --filter integration-tests exec playwright install --with-deps chromium
- name: Build workspace
run: pnpm build
- name: Run vite tests
run: pnpm --filter @holocron.so/vite test
- name: Run integration tests
run: pnpm --filter integration-tests test-e2e-start