Skip to content

Commit 7d28ee7

Browse files
authored
Merge pull request #13 from gatewayapps/publish-to-github
Publish to GitHub
2 parents a23b42b + 72d19ca commit 7d28ee7

File tree

8 files changed

+2837
-3733
lines changed

8 files changed

+2837
-3733
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
ci:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Git Checkout
14+
uses: actions/checkout@v1
15+
- name: Install Package Dependencies
16+
run: yarn
17+
- name: Build Package
18+
run: npm run build

.github/workflows/quality.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Quality Check
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
qc:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Git Checkout
14+
uses: actions/checkout@v1
15+
- name: Install Package Dependencies
16+
run: yarn
17+
- name: Lint
18+
run: yarn run lint

.github/workflows/release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Production Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*.*.*'
7+
8+
jobs:
9+
production_release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Git Checkout
13+
uses: actions/checkout@v1
14+
- name: Setup Node
15+
uses: actions/setup-node@v1
16+
with:
17+
scope: '@gatewayapps'
18+
registry-url: https://npm.pkg.github.com
19+
- name: Install Package Dependencies
20+
run: yarn
21+
- name: Publish
22+
run: npm publish
23+
env:
24+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

azure-pipelines.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)