Skip to content

chore: release eslint-plugin-prettier (alpha) (#566) #368

chore: release eslint-plugin-prettier (alpha) (#566)

chore: release eslint-plugin-prettier (alpha) (#566) #368

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