-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.14 KB
/
run.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run `deno lint` and `deno test`.
# For more information see: https://github.com/denoland/setup-deno
name: Deno
on:
workflow_dispatch:
inputs:
api:
description: API URL
required: true
head_sha:
description: Commit Hash
required: true
jwt:
description: JWT
required: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/[email protected]
- name: Setup Deno
uses: denoland/[email protected]
- name: Download
run: |
wget "${{ github.event.inputs.api }}/mods/deno.json"
ls
- name: Run
run: deno run -A "${{ github.event.inputs.api }}/mods/checker/main.ts" "${{ github.event.inputs.api }}" "${{ github.event.inputs.head_sha }}" "${{ github.event.inputs.jwt }}"