Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

feat: enhance download functionality with loading state and API integration #31

feat: enhance download functionality with loading state and API integration

feat: enhance download functionality with loading state and API integration #31

Workflow file for this run

name: PR Validation
on:
pull_request:
branches: [main, stable, "*.x"]
concurrency:
group: pr-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ steps.generate_token.outputs.token }}
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v5
with:
node-version: 22
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Validate commits
run: |
pnpm exec commitlint \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }}
- run: pnpm lint
- run: pnpm build
- run: pnpm test