File tree Expand file tree Collapse file tree 3 files changed +8
-13
lines changed
Expand file tree Collapse file tree 3 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 2828 node-version : ${{ env.NODE_VER }}
2929 registry-url : ' https://registry.npmjs.org'
3030
31- - run : npm ci
32- env :
33- CI : true
34-
35- - run : npm run lint
36- env :
37- CI : true
38-
39- - run : npm run test:unit:main
40- - run : npm run test:unit:actors
31+ - run : ./scripts/build.sh
4132
4233 - name : Is Release?
4334 if : startswith(github.ref, 'refs/tags/v')
Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ echo "Executing in $(pwd)"
1010echo " Description: Build the package in build/"
1111echo " ====================================================="
1212
13+ echo " Installing Dependencies"
14+ echo " Note: if EEXIST: file already exists on tsc, run ` npm uninstall -g tsc` "
15+ npm install -g typescript
16+ npm install
17+
1318# Prepare build
1419echo " Preparing Build"
1520rm -rf build/
@@ -22,8 +27,7 @@ mkdir build/
2227
2328# Build Package
2429echo " Building Library"
25- npm install > /dev/null
26- npm run lint > /dev/null
30+ npm run lint
2731tsc --outDir ./build/
2832
2933# Prepare Publish
Original file line number Diff line number Diff line change 1- import { KeyValuePairType } from "../KeyValuePair .type" ;
1+ import { KeyValueType } from "../KeyValue .type" ;
22
33export type GetMetadataResponse = {
44 id : string ;
You can’t perform that action at this time.
0 commit comments