Skip to content

Commit

Permalink
Migrate CI to GitHub Actions (#1417)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Nov 25, 2020
1 parent 16fdce0 commit db47d90
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 62 deletions.
34 changes: 0 additions & 34 deletions .buildkite/pipeline.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .buildkite/xvfb

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: test

# On every pull request, but only on push to master
on:
push:
branches:
- master
pull_request_target:

jobs:
test-node:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2.1.1

- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'

- name: Install dependencies
run: |
sudo apt-get install -y mesa-utils xvfb libgl1-mesa-dri libglapi-mesa libosmesa6
yarn bootstrap
- name: Run tests
run: |
xvfb-run -s "-ac -screen 0 1280x1024x16" yarn test ci
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

0 comments on commit db47d90

Please sign in to comment.