Skip to content

Bump prettier from 3.0.0 to 3.1.0 #50

Bump prettier from 3.0.0 to 3.1.0

Bump prettier from 3.0.0 to 3.1.0 #50

Workflow file for this run

name: "CI"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn run lint:check
- name: Prettier
run: yarn run prettier:check