Skip to content

chore: updated version of package manager #17

chore: updated version of package manager

chore: updated version of package manager #17

Workflow file for this run

name: Lint Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
eslint_and_prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Install pnpm
run: |
npm install -g [email protected]
- name: Install dependencies
run: pnpm install
- name: Run ESLint and Prettier
run: |
pnpm run lint
pnpm run format