Skip to content

chore(deps): bump @epic-web/totp from 3.0.2 to 3.1.0 (#10) #9

chore(deps): bump @epic-web/totp from 3.0.2 to 3.1.0 (#10)

chore(deps): bump @epic-web/totp from 3.0.2 to 3.1.0 (#10) #9

Workflow file for this run

name: Lint and Format
on:
push:
branches:
- main
paths:
- 'app/**'
- 'workers/**'
- '*.json'
- '*.js'
- '*.ts'
- '*.tsx'
pull_request:
branches:
- main
paths:
- 'app/**'
- 'workers/**'
- '*.json'
- '*.js'
- '*.ts'
- '*.tsx'
jobs:
lint-format:
name: ⬣ Lint and Format
runs-on: ubuntu-latest
strategy:
matrix:
pnpm: [9.15.5]
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 🟢 Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📦 Setup pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm }}
- name: 📎 Install dependencies
run: pnpm install
- name: 🔍 Run lint
run: pnpm lint
- name: 🎨 Run format check
run: pnpm format