Skip to content

Commit

Permalink
Merge pull request #1 from digitalroute/feature/add-semantic-release
Browse files Browse the repository at this point in the history
feat: added github actions, added semantic-release and commitizien
  • Loading branch information
Saeger authored Mar 4, 2020
2 parents e585ef2 + 2e18a7b commit 3991368
Show file tree
Hide file tree
Showing 3 changed files with 7,362 additions and 350 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node.js CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- run: npm run semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Loading

0 comments on commit 3991368

Please sign in to comment.