-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Setup GitHub actions Signed-off-by: Kathryn Kodama <kathryn.s.kodama@gmail.com> * Remove travis build Signed-off-by: Kathryn Kodama <kathryn.s.kodama@gmail.com>
1 parent
513c458
commit 044f35f
Showing
2 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.