-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (70 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
prepush-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14.4
- name: Yarn install
run: yarn install
- name: Runing prepush
run: JEST_COLLECT_COVERAGE=true yarn run pre-push
- name: Archive production artifacts
uses: actions/upload-artifact@v1
with:
name: dist
path: dist
- name: Archive test coverage artifacts
uses: actions/upload-artifact@v1
with:
name: coverage
path: coverage
publish:
needs: prepush-and-build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: Download 'dist' from the previous Job
uses: actions/download-artifact@v1
with:
name: dist
- name: Set GIT username & email
run: git config --global user.name 'GIT Workflow CI' && git config --global user.email [email protected]
- name: Update package patch version
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: Download 'coverage' from the previous Job
uses: actions/download-artifact@v1
with:
name: coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true
- name: NPM Authentication
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
- name: Publishing NPM Package
run: npm publish dist --access public && echo "Successfully released version $(node -p "require('./package.json').version")!"
- name: Pushing new commit && tag to the git repo
run: git push --no-verify && git push --tags --no-verify