Skip to content

chore(deps): Bump word-wrap from 1.2.3 to 1.2.4 #33

chore(deps): Bump word-wrap from 1.2.3 to 1.2.4

chore(deps): Bump word-wrap from 1.2.3 to 1.2.4 #33

Workflow file for this run

name: Check code style with Prettier
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
format:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install
- name: Check code style with Prettier
run: yarn prettier:check