Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore(): remove node v6 support
BREAKING CHANGE: remove node v6 support
  • Loading branch information
jannikkeye committed Jan 27, 2020
1 parent 09cade1 commit 3938c75
Show file tree
Hide file tree
Showing 4 changed files with 165 additions and 32 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,22 @@
name: Release
on:
push:
branches:
- master
- next
jobs:
prepare:
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip ci]')"
steps:
- run: echo "${{ github.event.head_commit.message }}"
publish:
needs: prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm install @semantic-release/changelog@3 @semantic-release/git@7 --ignore-scripts --no-save
- uses: codfish/semantic-release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
13 changes: 13 additions & 0 deletions .releaserc.json
@@ -0,0 +1,13 @@
{
"branches": ["master", "next"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
["@semantic-release/git", {
"assets": ["CHANGELOG.md"]
}],
"@semantic-release/github",
"@semantic-release/npm"
]
}
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -3,8 +3,9 @@ os:
language: node_js
node_js:
- "node"
- "12"
- "10"
- "8"
- "6"

script:
- npm test
Expand Down

0 comments on commit 3938c75

Please sign in to comment.