-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(CI): add github actions workflow to replace travis
- Loading branch information
1 parent
590c45b
commit ee76051
Showing
2 changed files
with
41 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Continuous Integration | ||
on: push | ||
jobs: | ||
unit-tests: | ||
runs-on: '${{ matrix.os }}' | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-20.04 | ||
- macos-10.15 | ||
node-version: | ||
- 10.x | ||
- 12.x | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: 'Install node.js ${{ matrix.node-version }}' | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
- name: Run unit tests | ||
run: | | ||
npm install | ||
npm run travis | ||
npm-publish: | ||
needs: unit-tests | ||
if: github.ref == 'refs/heads/master' && github.event_name == 'push' | ||
runs-on: ubuntu-16.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node.js 12.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 12.x | ||
- name: Run semantic-release | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_SEMANTIC_RELEASE_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: > | ||
curl | ||
"https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | ||
| bash - |
This file was deleted.
Oops, something went wrong.