Skip to content

feat(projects): project fields and submission on the USFM Import tab #537

feat(projects): project fields and submission on the USFM Import tab

feat(projects): project fields and submission on the USFM Import tab #537

Workflow file for this run

# Validates Pull Requests
name: Pre-merge
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches: [main]
permissions:
contents: read
concurrency:
group: pre-merge-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
with:
version: 10.33.0
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24.13.0
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint and format check
run: |
pnpm lint
pnpm format:check
- name: Type check
run: pnpm typecheck
- name: Run tests
run: pnpm test
- name: Build test
run: pnpm build