Skip to content

Commit

Permalink
Merge pull request #24 from pelias/actions
Browse files Browse the repository at this point in the history
add github actions workflow to replace travis/circle-ci
  • Loading branch information
missinglink authored Sep 13, 2021
2 parents 9a788b8 + 8924dfa commit b8b9dc9
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 19 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/push.yml
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
node-version:
- 12.x
- 14.x
- 16.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-20.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: >
if [[ -n "$GH_TOKEN" && -n "$NPM_TOKEN" ]]; then
curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash -
fi
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit b8b9dc9

Please sign in to comment.