We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8df8f8 commit e9dfb77Copy full SHA for e9dfb77
.github/workflows/collections-indexer.yml
@@ -12,9 +12,20 @@ on:
12
jobs:
13
index:
14
runs-on: ubuntu-latest
15
+ permissions:
16
+ contents: read
17
+ concurrency:
18
+ group: collections-indexer-${{ github.ref }}
19
+ cancel-in-progress: true
20
steps:
21
- uses: actions/checkout@v4
22
+ - name: Setup Node
23
+ uses: actions/setup-node@v4
24
+ with:
25
+ node-version: '20'
26
+ - name: Install dependencies
27
+ run: npm ci
28
- name: Build index
- run: node scripts/build-collections-index.ts
29
+ run: npx ts-node scripts/build-collections-index.ts
30
- name: Validate references
- run: node scripts/build-collections-index.ts --validate
31
+ run: npx ts-node scripts/build-collections-index.ts --validate
0 commit comments