Skip to content

Bump prettier from 2.8.8 to 3.0.3 #603

Bump prettier from 2.8.8 to 3.0.3

Bump prettier from 2.8.8 to 3.0.3 #603

Workflow file for this run

name: Node.js CI
on: push
jobs:
test:
name: Node.js v${{ matrix.node-version }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [ 16, 18 ]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Use Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm ci
- name: Run tests
run: npm test