We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b4736 commit 3f208f0Copy full SHA for 3f208f0
.github/workflows/build.yml
@@ -0,0 +1,17 @@
1
+name: Run build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v1
10
+ - uses: actions/setup-node@v1
11
+ with:
12
+ node-version: 10
13
+ - run: npm lint
14
+ - run: npm test
15
+ - run: npm build
16
17
.github/workflows/npmpublish.yml
@@ -1,4 +1,4 @@
-name: Node.js Package
+name: Publish to NPM
on:
release:
0 commit comments