Skip to content

Bump @eslint/plugin-kit from 0.2.1 to 0.2.3 #79

Bump @eslint/plugin-kit from 0.2.1 to 0.2.3

Bump @eslint/plugin-kit from 0.2.1 to 0.2.3 #79

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# https://github.com/pnpm/action-setup
name: Node.js Build
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test package
run: pnpm test