Skip to content

Commit

Permalink
switch from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
iamcal committed May 7, 2021
1 parent cd5be2f commit e056edf
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 10 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build

on:
push:
branches: ['master', 'main']
pull_request:
branches: ['master', 'main']

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'

- uses: actions/setup-node@v1
with:
node-version: 14

- run: npm install

- run: npm install -g grunt-cli
- run: grunt

- run: cp ./coverage/*/lcov.info ./coverage/

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit e056edf

Please sign in to comment.