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 4b80c8a commit 8eef38aCopy full SHA for 8eef38a
.github/workflows/docs.yml
@@ -5,7 +5,7 @@ on:
5
branches: [develop]
6
7
jobs:
8
- build:
+ build-docs:
9
runs-on: ubuntu-latest
10
11
steps:
.github/workflows/release.yml
@@ -0,0 +1,26 @@
1
+name: Release
2
+
3
+on:
4
+ push:
+ branches: [master]
+jobs:
+ build-release:
+ runs-on: ubuntu-latest
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Setup Node JS
14
+ uses: actions/setup-node@v1
15
+ with:
16
+ node-version: 12.x
17
+ - run: yarn install --ignore-engines
18
+ - run: yarn lint:nofix
19
+ - run: yarn test
20
+ - name: Release to npm 🚀
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
24
+ run: |
25
+ yarn add semantic-release
26
+ yarn semantic-release
0 commit comments