1
0
Fork 0

Create deno.yml

pull/724/head
Konrad Pabjan 2021-02-18 17:14:38 +01:00 committed by GitHub
parent 228a9534d1
commit c3478210af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 0 deletions

35
.github/workflows/deno.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Publish NPM
on:
workflow_dispatch:
inputs:
package:
required: true
description: 'core, artifact, cache, exec, github, glob, io, tool-cache'
version:
required: true
description: 'the version of the package to publish'
jobs:
test:
runs-on: macos-latest
steps:
- name: Setup repo
uses: actions/checkout@v2
- name: npm install
run: npm install
- name: bootstrap
run: npm run bootstrap
- name: build
run: npm run build
- name: Run tests
run: npm run test
- name: echo inputs
run: echo ${{ github.event.inputs.package }} ${{ github.event.inputs.version }}