File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1010 - uses : actions/checkout@v4
1111 - uses : actions/setup-node@v4
1212 with :
13- node-version : 18.18.2
13+ node-version : 22.11.0
1414 - run : npm install
1515 - run : npm run env-var-check
1616 env :
3434 - uses : actions/checkout@v4
3535 - uses : actions/setup-node@v4
3636 with :
37- node-version : 18.18.2
37+ node-version : 22.11.0
3838 - run : npm install
3939 - run : npm run register
4040 env :
Original file line number Diff line number Diff line change @@ -8,9 +8,7 @@ import { loadEnv } from "./config";
88 */
99export function validateEnv ( ) {
1010 const env : env = loadEnv ( { } , false ) ;
11- const missingEnvVariables = Object . keys ( env ) . filter (
12- ( key ) => env [ key ] == ""
13- ) ;
11+ const missingEnvVariables = Object . keys ( env ) . filter ( ( key ) => env [ key ] == "" ) ;
1412
1513 if ( missingEnvVariables . length > 0 ) {
1614 throw new Error (
You can’t perform that action at this time.
0 commit comments