Skip to content

fix: compatibility with prettier@3 without plugins #366

fix: compatibility with prettier@3 without plugins

fix: compatibility with prettier@3 without plugins #366

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
name: Lint and Test on Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14
- 16
- 18
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install
run: yarn --frozen-lockfile
- name: Test
run: yarn mocha
- name: Perf
run: TIMING=1 yarn lint