Skip to content

build(deps-dev): bump json5 from 1.0.1 to 1.0.2 #18

build(deps-dev): bump json5 from 1.0.1 to 1.0.2

build(deps-dev): bump json5 from 1.0.1 to 1.0.2 #18

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
build:
name: Lint
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2.2.1
with:
version: 7.1.6
- name: Setup Node.js environment
uses: actions/setup-node@v3.2.0
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Prettier
run: pnpm run prettier:check
- name: Lint
run: pnpm run lint