New Package: Emotion Extract - CSS-in-JS with the performance of handwritten stylesheets #367
Workflow file for this run
This file contains 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 | |
on: | |
workflow_call: | |
workflow_dispatch: | |
merge_group: | |
pull_request: | |
paths-ignore: | |
- ".vscode/**" | |
- "**/*.md" | |
- ".github/ISSUE_TEMPLATE/**" | |
# Automatically cancel older in-progress jobs on the same branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} | |
cancel-in-progress: true | |
env: | |
ASTRO_TELEMETRY_DISABLED: true | |
jobs: | |
prelim: | |
name: "Linux - Node 22" | |
uses: ./.github/workflows/test.yml | |
with: | |
node: 22 | |
os: ubuntu-latest | |
check: true | |
Linux: | |
name: "Linux - Node ${{ matrix.NODE_VERSION }}" | |
needs: prelim | |
uses: ./.github/workflows/test.yml | |
with: | |
node: ${{ matrix.NODE_VERSION }} | |
os: ubuntu-latest | |
strategy: | |
matrix: | |
NODE_VERSION: [18, 20, 23] | |
fail-fast: false | |
Windows: | |
name: "Windows - Node 22" | |
needs: prelim | |
uses: ./.github/workflows/test.yml | |
with: | |
node: 22 | |
os: windows-latest | |
macOS: | |
name: "macOS - Node 22" | |
needs: prelim | |
uses: ./.github/workflows/test.yml | |
with: | |
node: 22 | |
os: macos-14 | |
Chrome: | |
name: E2E Tests | |
needs: prelim | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install Chromium | |
run: pnpm install:chromium | |
- name: Test | |
run: pnpm run test:e2e --reporter github |