Skip to content

build(deps-dev): bump prettier from 3.1.1 to 3.2.4 #146

build(deps-dev): bump prettier from 3.1.1 to 3.2.4

build(deps-dev): bump prettier from 3.1.1 to 3.2.4 #146

Workflow file for this run

name: Node.js CI
on:
push:
paths-ignore: ['LICENSE', 'example/**', '**.md', '.*']
pull_request:
paths-ignore: ['LICENSE', 'example/**', '**.md', '.*']
jobs:
build:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, macOS-latest] # , windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install # npm ci
- run: npm run build --if-present
- run: npm run test:ci