Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

build(deps): Bump marked from 12.0.0 to 12.0.1 #146

build(deps): Bump marked from 12.0.0 to 12.0.1

build(deps): Bump marked from 12.0.0 to 12.0.1 #146

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@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Run prettier
run: |
yarn install --dev --exact --frozen-lockfile
yarn prettier --version
yarn format:check
eslint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Run eslint
run: |
yarn install --dev --exact --frozen-lockfile
yarn eslint --version
yarn lint:check