Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

fix(deps): update dependency nanoid to ^3.3.6 #56

fix(deps): update dependency nanoid to ^3.3.6

fix(deps): update dependency nanoid to ^3.3.6 #56

name: Format and Lint with pnpm
on:
pull_request:
types: [opened, synchronize]
jobs:
format_and_lint:
name: Format and Lint Code with pnpm
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install Dependencies
run: pnpm install
- name: Format Code
run: pnpm format
- name: Lint Code
run: pnpm lint-run