Commit c345868 1 parent 51f2313 commit c345868 Copy full SHA for c345868
File tree 1 file changed +12
-15
lines changed
1 file changed +12
-15
lines changed Original file line number Diff line number Diff line change 9
9
build :
10
10
name : Build, Test, and Deploy
11
11
runs-on : ubuntu-latest
12
- timeout-minutes : 30
13
12
steps :
13
+ - uses : actions/checkout@v2
14
+ with :
15
+ fetch-depth : 0
16
+ - uses : actions/setup-node@v1
17
+ with :
18
+ node-version : 14.x
14
19
- name : Prepare NPM Token
15
20
run : echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
16
21
shell : bash
17
22
env :
18
23
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
19
- - uses : actions/setup-node@v1
20
- with :
21
- node-version : 14.x
22
- - uses : actions/checkout@v2
23
- with :
24
- fetch-depth : 0
25
- - name : Restore Dependency Cache
26
- uses : actions/cache@v1
27
- with :
28
- path : ~/.npm
29
- key : ${{ runner.OS }}-dependency-cache-${{ hashFiles('**/package.json') }}
30
- - run : npm ci --no-package-lock
31
- - run : npm run bootstrap -- --ignore-scripts
32
- - run : npm run publish:ci
24
+ - name : Install Dependencies
25
+ run : npm ci --no-package-lock && lerna bootstrap --ignore-scripts
26
+ shell : bash
27
+ - name : Release
28
+ run : npm run publish:ci
29
+ shell : bash
33
30
env :
34
31
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35
32
GIT_AUTHOR_NAME : Ionitron
You can’t perform that action at this time.
0 commit comments