We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ae5a36 + 1ba60ca commit 8f49701Copy full SHA for 8f49701
.github/workflows/validate.yml
@@ -3,6 +3,9 @@ name: Validate
3
on:
4
pull_request_target:
5
6
+permissions:
7
+ contents: read
8
+
9
jobs:
10
schema:
11
runs-on: ubuntu-latest
@@ -49,10 +52,12 @@ jobs:
49
52
50
53
51
54
steps:
55
+ - uses: actions/checkout@v4
56
- uses: actions/checkout@v4
57
with:
58
repository: ${{ github.event.pull_request.head.repo.full_name }}
59
ref: ${{ github.event.pull_request.head.ref }}
60
+ path: ./head
61
62
- name: Setup Node.js
63
uses: actions/setup-node@v4
@@ -81,7 +86,7 @@ jobs:
81
86
run: pnpm install
82
87
83
88
- name: Lint Check
84
- run: pnpx @biomejs/biome@2.0.0 ci
89
+ run: pnpx @biomejs/biome@2.0.0 ci ./head
85
90
91
data-consistency:
92
needs: schema
0 commit comments