Deno #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
install_token: | |
description: Install token | |
required: true | |
check_id: | |
description: Check ID | |
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 }}" "${{ github.event.inputs.install_token }}" "${{ github.event.inputs.check_id }}" | |
- name: Info | |
run: | | |
cd nissmick-core | |
echo 'ls' | |
ls | |
echo 'git info' | |
git branch | |