Skip to content

fix: upgrade eslint-plugin-prettier from 5.1.2 to 5.1.3 #137

fix: upgrade eslint-plugin-prettier from 5.1.2 to 5.1.3

fix: upgrade eslint-plugin-prettier from 5.1.2 to 5.1.3 #137

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, and test
run: |
npm ci
npm run lint
npm test
npm run build --if-present
env:
CI: true