Skip to content

Commit

Permalink
Setup GitHub actions (#78)
Browse files Browse the repository at this point in the history
* Setup GitHub actions

Signed-off-by: Kathryn Kodama <[email protected]>

* Remove travis build

Signed-off-by: Kathryn Kodama <[email protected]>
  • Loading branch information
kathrynkodama committed Apr 27, 2021
1 parent 513c458 commit 044f35f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 15 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/mp-starter-vscode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

name: Node.js CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 12.x
- run: npm install
- run: sudo apt-get install xvfb
- run: npm run lint
- run: xvfb-run --auto-servernum npm test



15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 044f35f

Please sign in to comment.