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 c46f2e5 commit 4b8df2dCopy full SHA for 4b8df2d
.github/workflows/npm-publish.yml
@@ -0,0 +1,26 @@
1
+name: npm-publish
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v1
14
15
+ - uses: actions/setup-node@v1
16
+ with:
17
+ node-version: 10
18
19
+ - run: npm install
20
21
+ - run: npm test
22
23
+ - uses: JS-DevTools/npm-publish@v1
24
25
+ token: ${{ secrets.NPM_TOKEN }}
26
+ access: "public"
package.json
@@ -1,6 +1,6 @@
{
"name": "@abstractapi/javascript-core",
- "version": "0.1.0",
+ "version": "0.1.2",
"description": "AbstractAPI Javascript Core Library - Used by the other Abstract API libraries",
"main": "index.js",
"scripts": {
0 commit comments