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 28
28
node-version : ${{ env.NODE_VER }}
29
29
registry-url : ' https://registry.npmjs.org'
30
30
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
41
32
42
33
- name : Is Release?
43
34
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)"
10
10
echo " Description: Build the package in build/"
11
11
echo " ====================================================="
12
12
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
+
13
18
# Prepare build
14
19
echo " Preparing Build"
15
20
rm -rf build/
@@ -22,8 +27,7 @@ mkdir build/
22
27
23
28
# Build Package
24
29
echo " Building Library"
25
- npm install > /dev/null
26
- npm run lint > /dev/null
30
+ npm run lint
27
31
tsc --outDir ./build/
28
32
29
33
# Prepare Publish
Original file line number Diff line number Diff line change 1
- import { KeyValuePairType } from "../KeyValuePair .type" ;
1
+ import { KeyValueType } from "../KeyValue .type" ;
2
2
3
3
export type GetMetadataResponse = {
4
4
id : string ;
You can’t perform that action at this time.
0 commit comments