Skip to content

Bump prettier from 2.8.8 to 3.0.0 #69

Bump prettier from 2.8.8 to 3.0.0

Bump prettier from 2.8.8 to 3.0.0 #69

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm i
- name: npm run build
run: npm run build
- name: npm test
run: npm test