Skip to content

Commit

Permalink
build(ci): change from travis to github actions
Browse files Browse the repository at this point in the history
Move away from travis and use GitHub Actions instead.

My reasoning for this is because then our CI is in the same place as our code and also because GitHub Actions allows for more possibilities then travis.
  • Loading branch information
Sean authored Aug 22, 2019
1 parent ddbaf51 commit c621e5d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on: [push, pull_request]
jobs:
test:
name: Test build process on node ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [8, 10, 11, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: pre-install
run: sh preinstall.sh
- name: install dependencies
run: npm install
- name: gulp build
run: npx gulp build
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

0 comments on commit c621e5d

Please sign in to comment.