Skip to content

chore: add support for nested CSS #1111

chore: add support for nested CSS

chore: add support for nested CSS #1111

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: {}
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- name: Install Playwright
run: pnpm playwright-core install
- run: pnpm dev:prepare
- run: pnpm lint
- run: pnpm test
- run: pnpm build
- run: pnpm test:types
- run: pnpm dev:build
- uses: codecov/codecov-action@v4
if: matrix.os != 'windows-latest'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}