Commit 07f10b2 1 parent 17cb945 commit 07f10b2 Copy full SHA for 07f10b2
File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 45
45
- name : Environment
46
46
shell : bash
47
47
working-directory : ${{ github.workspace }}
48
- run : cp .env.example .env
48
+ run : |
49
+ cp .env.example .env
50
+ cp .env.example .env.local
51
+ cp .env.test .env.test.local
52
+ cp .env.development .env.development.local
53
+ cp .env.production .env.production.local
49
54
50
55
- name : Install
51
56
shell : bash
78
83
env :
79
84
NODE_ENV : production
80
85
working-directory : ${{ github.workspace }}
81
- run : yarn start
86
+ run : yarn start build
82
87
83
88
- name : Upload Artifact
84
89
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ const parseEnv: parseEnv = (
79
79
//
80
80
} else {
81
81
const error = new Error ( "no '.env' file found" , { cause : dotenvFile } ) ;
82
- // errors.push(error);
82
+ errors . push ( error ) ;
83
83
}
84
84
} ) ;
85
85
You can’t perform that action at this time.
0 commit comments