-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (50 loc) · 1.51 KB
/
npmpublish.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
57
58
59
60
61
62
63
name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- name: Yarn install
run: yarn install
- name: Runing lint, tests
run: yarn run ci
- name: Set GIT username & email
run: git config --global user.name 'GIT Workflow CI' && git config --global user.email dev@korniychuk.pro
- run: npm version patch -m 'Update package version version to %s'
# - name: Generate public package.json
# run: yarn run gen-public-package.json
# - name: Generate public README.md
# run: cp README.md dist/
# - name: Archive production artifacts
# uses: actions/upload-artifact@v1
# with:
# name: dist
# path: dist
- name: Make a build
run: yarn run build:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
- run: npm publish --access public
# working-directory: ./dist
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: git push --no-verify & git push --tags --no-verify