Commit ed2fc11 1 parent 203b777 commit ed2fc11 Copy full SHA for ed2fc11
File tree 5 files changed +1519
-3944
lines changed
projects/ngx-cookie-service-ssr
5 files changed +1519
-3944
lines changed Original file line number Diff line number Diff line change 20
20
with :
21
21
node-version : ${{ matrix.node }}
22
22
- name : Install dependencies
23
- run : npm ci --force
23
+ run : npm i --force
24
24
- name : Lint
25
25
run : npm run lint
26
26
- name : Format check
Original file line number Diff line number Diff line change
1
+ name : Publish to NPM
2
+ on :
3
+ push :
4
+ # ## Publish on new tag release
5
+ tags :
6
+ - v*
7
+ jobs :
8
+ publish :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v1
12
+ - uses : actions/setup-node@v1
13
+ with :
14
+ node-version : 16
15
+ - name : Install Angular CLI
16
+ run : npm install -g @angular/cli @angular/core
17
+ - name : Install NPM Dependencies
18
+ run : npm ci --force
19
+ - name : Build project
20
+ run : ng build --configuration production --project=ngx-cookie-service-ssr
21
+ - name : Publish to NPM
22
+ uses : JS-DevTools/npm-publish@v1
23
+ with :
24
+ token : ${{ secrets.NPM_TOKEN }}
25
+ package : dist/ngx-cookie-service-ssr/package.json
26
+ access : public
You can’t perform that action at this time.
0 commit comments