Skip to content

Commit

Permalink
Merge pull request #76 from JasonEtco/hypescript
Browse files Browse the repository at this point in the history
HypeScript
  • Loading branch information
JasonEtco committed Dec 6, 2020
2 parents be196d1 + d7b1c14 commit 293fd53
Show file tree
Hide file tree
Showing 13 changed files with 250 additions and 1,399 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,12 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 12.x
- run: npm ci
- run: npm test
- name: codecov
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish

on:
release:
types: [published, edited]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.release.tag_name }}
- run: npm ci
- run: npm run build
- uses: JasonEtco/build-and-tag-action@v1
with:
setup: ''
env:
GITHUB_TOKEN: ${{ github.token }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,5 @@ typings/

# FuseBox cache
.fusebox/

dist
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Create an issue
description: Creates a new issue using a template with front matter.
runs:
using: docker
image: Dockerfile
using: node12
main: dist/index.js
branding:
icon: alert-circle
color: gray-dark
Expand Down

0 comments on commit 293fd53

Please sign in to comment.