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 eee97e8 commit b424b6dCopy full SHA for b424b6d
.github/workflows/publish-to-npm.yml
@@ -0,0 +1,17 @@
1
+on:
2
+ push:
3
+ branches: master
4
+
5
+jobs:
6
+ publish:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: actions/setup-node@v3
11
+ with:
12
+ node-version-file: '.nvmrc'
13
+ - run: npm ci
14
+ - run: npm test
15
+ - uses: JS-DevTools/npm-publish@v3
16
17
+ token: ${{ secrets.NPM_TOKEN }}
.travis.yml
0 commit comments