Skip to content

Commit

Permalink
Move to GitHub Actions (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb authored Jan 1, 2021
1 parent b0171a5 commit 10680d8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 12
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# electron-unhandled [![Build Status](https://travis-ci.org/sindresorhus/electron-unhandled.svg?branch=master)](https://travis-ci.org/sindresorhus/electron-unhandled)
# electron-unhandled

> Catch unhandled errors and promise rejections in your [Electron](https://electronjs.org) app
Expand Down

0 comments on commit 10680d8

Please sign in to comment.