Skip to content

Bump @eslint/plugin-kit from 0.2.0 to 0.2.3 in the npm_and_yarn group #1022

Bump @eslint/plugin-kit from 0.2.0 to 0.2.3 in the npm_and_yarn group

Bump @eslint/plugin-kit from 0.2.0 to 0.2.3 in the npm_and_yarn group #1022

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
jobs:
smoke-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Run Smoke Tests
run: |
npm ci
npm run test:smoke
unit-tests:
needs: smoke-tests # to avoid writing over each others output
strategy:
matrix:
version: [22, 18]
platform: [ macos-latest, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- name: Run Unit Tests
run: |
npm ci
npm run test:unit