Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Semantic Release
on:
push:
branches:
- 'main'
- 'master'
tags-ignore:
- '**'
jobs:
semantic_release:
name: Semantic Release Process
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install Semantic Release Packages
run: npm i -g @stackr23/preset-conventional-changelog semantic-release @semantic-release/commit-analyzer @semantic-release/release-notes-generator @semantic-release/changelog @semantic-release/npm @semantic-release/git @semantic-release/github
- name: Exec Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
30 changes: 30 additions & 0 deletions .github/workflows/test_and_list.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test and Lint
on:
push:
branches:
- 'develop'
- 'feat/**'
- 'fix/**'
tags-ignore:
- '**'
jobs:
test_and_lint:
name: Testing with NodeJS v${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: ['12', '13', '14']
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node v${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run karma
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
node_modules
build
package-lock.json
yarn.lock
64 changes: 0 additions & 64 deletions .travis.yml

This file was deleted.

Loading