Skip to content

fix: workaround for plugin type (#811) #33

fix: workaround for plugin type (#811)

fix: workaround for plugin type (#811) #33

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
- name: Format
run: pnpm format
- name: Typecheck
run: pnpm typecheck
- name: Lint code
run: pnpm lint:js
### Temporarily disabled, see https://github.com/vitest-dev/eslint-plugin-vitest/issues/754
#- name: Lint docs
# run: pnpm lint:eslint-docs
test:
name: Test (Node.js ${{ matrix.node-version }}, ${{ matrix.os.name }})
runs-on: ${{ matrix.os.version }}
strategy:
fail-fast: false
matrix:
node-version:
- 22
- 24
os:
- name: Ubuntu
version: ubuntu-latest
- name: Windows
version: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- name: Test
run: pnpm test