Skip to content

chore(deps): update ci/cd #260

chore(deps): update ci/cd

chore(deps): update ci/cd #260

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- "**"
workflow_call:
secrets:
BOT_TOKEN:
required: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 2
- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: .node-version
check-latest: true
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
env:
NPM_CONFIG_USERCONFIG: .ci.npmrc
GH_PKG_AUTH_TOKEN: ${{ secrets.BOT_TOKEN }}
- name: Run compose script if exists
run: pnpm run --if-present compose
- name: Lint code
run: pnpm run lint