File tree 3 files changed +11
-11
lines changed
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ jobs:
10
10
steps :
11
11
- uses : actions/setup-python@v4
12
12
with :
13
- python-version : 3.7
13
+ python-version : 3.9
14
14
os_build :
15
15
runs-on : ${{ matrix.os }}
16
16
strategy :
17
17
matrix :
18
- os : [ ubuntu-latest, macos-latest ]
19
- python : [ 3.7 , 3.8, 3.9 ]
20
- node : [ 14 ]
18
+ os : [ ubuntu-latest ]
19
+ python : [ 3.8 , 3.9, "3.10", 3.11 ]
20
+ node : [ 18, 20 ]
21
21
env :
22
22
SAM_CLI_TELEMETRY : " 0"
23
23
AWS_REGION : " us-east-1"
@@ -73,14 +73,13 @@ jobs:
73
73
- uses : actions/setup-node@v3
74
74
with :
75
75
node-version : ${{ matrix.node }}
76
- cache : ' npm '
76
+ cache : ' yarn '
77
77
- name : Install Dependencies Node.js
78
78
id : install_nodejs
79
79
# Touch needed because of https://github.com/aws/aws-cli/issues/2639
80
80
run : |
81
- npm ci --include=optional
82
- find ./node_modules/* -mtime +10950 -exec touch {} \;
83
- npm run build
81
+ yarn install
82
+ yarn build
84
83
- uses : actions/cache@v3
85
84
with :
86
85
path : ~/.cache/pre-commit/
@@ -104,7 +103,7 @@ jobs:
104
103
- name : Run Integration Tests
105
104
id : integration_testing
106
105
run : |
107
- RPDK_PACKAGE=$(npm pack --silent )
106
+ RPDK_PACKAGE=$(yarn pack)
108
107
RPDK_PATH=$PWD/$RPDK_PACKAGE
109
108
DIR=TestCI
110
109
mkdir $DIR
Original file line number Diff line number Diff line change 14
14
},
15
15
"scripts" : {
16
16
"build" : " tsc" ,
17
- "prepack" : " npm run build" ,
17
+ "prepack" : " yarn build" ,
18
18
"lint" : " eslint --ext .ts,.js ." ,
19
19
"lint:fix" : " eslint --fix --ext .ts,.js ." ,
20
20
"test" : " jest" ,
Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ export interface Callable<R extends Array<any>, T> {
51
51
( ...args : R ) : T ;
52
52
}
53
53
54
- interface Integer extends bigint {
54
+ // eslint-disable-next-line @typescript-eslint/ban-types
55
+ interface Integer extends BigInt {
55
56
/**
56
57
* Defines the default JSON representation of
57
58
* Integer (BigInt) to be a number.
You can’t perform that action at this time.
0 commit comments