Skip to content

Update CD-prod.yml

Update CD-prod.yml #11

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install Node v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: lint bot"