-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (53 loc) · 1.39 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Release
on:
push:
branches:
- master
- develop
- feature/ci
jobs:
# publish-github:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js 12.x
# uses: actions/setup-node@v1
# with:
# node-version: 12.x
# registry-url: https://npm.pkg.github.com/
# scope: '@veriblock'
# - run: npm run publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# publish-npmjs:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js 12.x
# uses: actions/setup-node@v1
# with:
# node-version: 12.x
# - run: npm run publish
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
# sonar:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js 12.x
# uses: actions/setup-node@v1
# with:
# node-version: 12.x
# - run: npm install
# - run: npm run build
# - run: npm test
# - run: npm run test:cov
# - name: setup sonar-scanner
# uses: warchant/setup-sonar-scanner@v1
# - name: run sonar-scanner
# # run only on push to develop/master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: sonar-scanner -Dsonar.login=${{ secrets.SONAR_TOKEN }} || true