Skip to content

Merge pull request #18 from nix6839/hack-import #1

Merge pull request #18 from nix6839/hack-import

Merge pull request #18 from nix6839/hack-import #1

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8.15.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- run: corepack enable
- run: pnpm i --frozen-lockfile -P
- run: pnpm run test:demo
- run: pnpm run test:vite3
- run: pnpm run test:vite4
- run: pnpm run test:yarn-pnp