Skip to content

Bump eslint-plugin-vitest from 0.4.1 to 0.5.4 (#721) #1727

Bump eslint-plugin-vitest from 0.4.1 to 0.5.4 (#721)

Bump eslint-plugin-vitest from 0.4.1 to 0.5.4 (#721) #1727

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache NPM
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test