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

build(deps): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group #161

build(deps): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group

build(deps): bump braces from 3.0.2 to 3.0.3 in the npm_and_yarn group #161

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: [20]
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: [20]
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