Skip to content

build(deps): Bump next from 14.0.1 to 14.2.3 in the npm_and_yarn group across 1 directory #40

build(deps): Bump next from 14.0.1 to 14.2.3 in the npm_and_yarn group across 1 directory

build(deps): Bump next from 14.0.1 to 14.2.3 in the npm_and_yarn group across 1 directory #40

Workflow file for this run

name: style
on:
push:
branches: main
pull_request:
branches: main
jobs:
prettier:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Run prettier
run: |
yarn add --dev --exact prettier
yarn format:check
eslint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Run eslint
run: |
yarn add --dev --exact eslint
yarn lint:check