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
3 changes: 3 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- run: npm ci
Expand All @@ -16,3 +18,4 @@ jobs:
- run: npm run lint
- run: npm run pack
- run: npm test
- run: npm run semantic-release
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,14 @@ all:

.PHONY: release
release: all
npm prune --production
npm prune --production

.PHONY: semantic-release
semantic-release:
npm ci
npx semantic-release

.PHONY: semantic-release-dry-run
semantic-release-dry-run:
npm ci
npx semantic-release -d
Loading