Skip to content

Commit d94a195

Browse files
authored
Create main.yml
1 parent 221cc01 commit d94a195

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: push
2+
3+
jobs:
4+
publish:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v1
8+
- uses: actions/setup-node@v1
9+
with:
10+
node-version: 10
11+
- run: npm install
12+
- run: npm test
13+
- uses: JS-DevTools/npm-publish@v1
14+
with:
15+
token: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)