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 1471b99 commit bb9bb14Copy full SHA for bb9bb14
.github/workflows/sync-ticket.yml
@@ -18,8 +18,17 @@ jobs:
18
with:
19
fetch-depth: 0
20
21
- - name: Install Dependencies
22
- uses: ./.github/actions/setup-node-pnpm
+ - name: Install pnpm
+ uses: pnpm/action-setup@v4
23
+
24
+ - name: Set node version
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: 22
28
+ cache: pnpm
29
30
+ - name: Install deps
31
+ run: pnpm install
32
33
- name: Run Sync Ticket Script
34
run: 'curl "$PEATIX_API_ORIGIN/event/$PEATIX_EVENT_ID/list_sales?fresh=true" -H "Authorization: Bearer $PEATIX_API_SECRET" && pnpm dlx tsx scripts/admin/sync-role/main.ts'
0 commit comments