File tree 6 files changed +19
-9301
lines changed
6 files changed +19
-9301
lines changed Original file line number Diff line number Diff line change 17
17
node-version : ${{ matrix.node-version }}
18
18
- run : npm i
19
19
- run : npm run ci
20
+ build :
21
+ runs-on : ubuntu-latest
22
+
23
+ strategy :
24
+ matrix :
25
+ node-version : ['18.x', '20.x']
26
+
27
+ steps :
28
+ - uses : actions/checkout@v4
29
+ - name : Use Node.js ${{ matrix.node-version }}
30
+ uses : actions/setup-node@v4
31
+ with :
32
+ node-version : ${{ matrix.node-version }}
33
+ - run : npm i
34
+ - run : npm run build
Original file line number Diff line number Diff line change 130
130
.pnp. *
131
131
132
132
dist
133
- NOTES.txt
133
+ src / environment / sdk.js
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export default {
16
16
commonjs ( ) ,
17
17
] ,
18
18
output : {
19
- file : './src/environment/sdk/__sdk .js' ,
19
+ file : './src/environment/sdk.js' ,
20
20
format : 'iife' ,
21
21
} ,
22
22
}
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export default [
42
42
} ,
43
43
} ) ,
44
44
{
45
- input : './src/environment/sdk/__sdk .js' ,
45
+ input : './src/environment/sdk.js' ,
46
46
output : {
47
47
file : './dist/sdk.js' ,
48
48
} ,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ const runAirtableScript = async ({
60
60
if ( ! sdkScript ) {
61
61
// The path is dynamically rewritten in the build script
62
62
const sdkScriptPath = process . env . JEST_AIRTABLE_TS_DEV
63
- ? './src/environment/sdk/__sdk .js'
63
+ ? './src/environment/sdk.js'
64
64
: './sdk.js'
65
65
sdkScript = fs . readFileSync ( sdkScriptPath , 'utf8' ) . toString ( )
66
66
}
You can’t perform that action at this time.
0 commit comments