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 f2fd190 commit 3ebf02aCopy full SHA for 3ebf02a
.github/workflows/ci.yml
@@ -0,0 +1,22 @@
1
+name: ci
2
+on: push
3
+jobs:
4
+ test:
5
+ runs-on: ubuntu-20.04
6
+ steps:
7
+ - name: Checkout 🛎
8
+ uses: actions/checkout@v2
9
+
10
+ - name: Run tests 🧪
11
+ # https://github.com/cypress-io/github-action
12
+ uses: cypress-io/github-action@v2
13
+ with:
14
+ build: npm test
15
16
+ - name: Semantic Release 🚀
17
+ uses: cycjimmy/semantic-release-action@v2
18
19
+ branch: master
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
.npmrc
@@ -1,4 +1,4 @@
-registry=http://registry.npmjs.org/
+registry=https://registry.npmjs.org/
save-exact=true
progress=false
package-lock=true
.travis.yml
0 commit comments