We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f196d3 commit 7508777Copy full SHA for 7508777
.github/workflows/main.yml
@@ -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
readme.md
@@ -1,4 +1,4 @@
-# electron-serve [](https://travis-ci.org/sindresorhus/electron-serve)
+# electron-serve
> Static file serving for Electron apps
0 commit comments