Skip to content

Commit

Permalink
Merge pull request #62 from alexandercbooth/semantic-release
Browse files Browse the repository at this point in the history
chore: add config for semantic release + github actions
  • Loading branch information
alexandercbooth authored May 4, 2021
2 parents 3d9a991 + ade4e96 commit a3d7232
Show file tree
Hide file tree
Showing 5 changed files with 30,590 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on: push
jobs:
test:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: npm ci
- run: npm run build
- run: npm test
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

Loading

0 comments on commit a3d7232

Please sign in to comment.