참고소스 수정본
This commit is contained in:
23
참고/firecrawl-main/.github/workflows/validate-lockfiles.yml
vendored
Normal file
23
참고/firecrawl-main/.github/workflows/validate-lockfiles.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Validate Lockfiles
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- "apps/test-suite/package.json"
|
||||
- "apps/test-suite/pnpm-lock.yaml"
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
runs-on: blacksmith-2vcpu-ubuntu-2404
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4
|
||||
with:
|
||||
version: 10
|
||||
|
||||
- name: Validate test-suite lockfile
|
||||
run: pnpm install --frozen-lockfile
|
||||
working-directory: apps/test-suite
|
||||
Reference in New Issue
Block a user