Skip to content

Commit

Permalink
Migrate from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bacher09 committed Feb 10, 2022
1 parent e745165 commit 0e3b0c9
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 34 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build and run tests

on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'


jobs:
build:
name: Build and test
runs-on: ubuntu-latest
env:
DEBIAN_FRONTEND: noninteractive
TZ: Etc/UTC
steps:
- uses: actions/checkout@v2
- name: Setup node 14
uses: actions/setup-node@v2
with:
node-version: '14'
cache: npm
- name: Node checks
run: |
npm ci
npm test
npm run lint
- name: Install browsers
run: |
sudo apt-get update -q -y
sudo apt-get install -q -y chromium-chromedriver firefoxdriver
- name: Run browser tests
run: npm run browser-test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

0 comments on commit 0e3b0c9

Please sign in to comment.