Skip to content

fix(prettier): add pnpm-lock.yaml to prettierignore #2

fix(prettier): add pnpm-lock.yaml to prettierignore

fix(prettier): add pnpm-lock.yaml to prettierignore #2

Workflow file for this run

---
name: CI
env:
HUSKY: 0
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
run: npm i -g pnpm
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm i
- name: Check Format
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Build
run: pnpm build