Skip to content

Commit

Permalink
ci: switch to github actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolaiSchmid committed Jul 12, 2020
1 parent 25b4161 commit 17912cc
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 18 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --generate-notes
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit 17912cc

Please sign in to comment.