mirror of
https://gitea.com/actions/setup-deno.git
synced 2025-12-13 20:06:43 +00:00
feat: allow specifying binary name (#71)
This commit is contained in:
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
@@ -61,3 +61,19 @@ jobs:
|
||||
|
||||
- name: Check version
|
||||
run: deno -V | grep -q "deno 1\.43\.1"
|
||||
|
||||
test-binary-name:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Deno
|
||||
uses: ./
|
||||
with:
|
||||
deno-binary-name: deno_foo
|
||||
|
||||
- name: Check binary exists
|
||||
run: deno_foo -V
|
||||
|
||||
Reference in New Issue
Block a user