Skip to content

Bump prettier from 2.8.8 to 3.1.1 #914

Bump prettier from 2.8.8 to 3.1.1

Bump prettier from 2.8.8 to 3.1.1 #914

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '*.md'
- '*.pdf'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
- '*.pdf'
env:
CI: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
yarn install
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn build
- name: Run tests
run: |
yarn test