Skip to content

Commit 7508777

Browse files
authored
Move to GitHub Actions (#27)
1 parent 1f196d3 commit 7508777

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Node.js ${{ matrix.node-version }}
8+
runs-on: macos-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
node-version:
13+
- 14
14+
- 12
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- run: npm install
21+
- run: npm test

.travis.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# electron-serve [![Build Status](https://travis-ci.org/sindresorhus/electron-serve.svg?branch=master)](https://travis-ci.org/sindresorhus/electron-serve)
1+
# electron-serve
22

33
> Static file serving for Electron apps
44

0 commit comments

Comments
 (0)