File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 74
74
description : The node version to use for the workflow.
75
75
type : number
76
76
required : false
77
- default : 16
77
+ default : 20
78
78
79
79
js_package_manager :
80
80
description : " Enable TypeScript?"
105
105
ci_script : ${{ inputs.js_package_manager == 'yarn' && 'yarn install --immutable' || 'npm ci' }}
106
106
cache_dependency_path : ${{ inputs.cache_dependency_path || format(inputs.js_package_manager == 'yarn' && '{0}/yarn.lock' || '{0}/package-lock.json', inputs.frontend_directory) }}
107
107
COMPOSER_AUTH : ${{ secrets.composer_auth }}
108
+ DISABLE_V8_COMPILE_CACHE : 1
108
109
109
110
jobs :
110
111
build :
@@ -116,10 +117,10 @@ jobs:
116
117
117
118
steps :
118
119
- name : Check out code
119
- uses : actions/checkout@v3
120
+ uses : actions/checkout@v4
120
121
121
122
- name : Set up Node
122
- uses : actions/setup-node@v3
123
+ uses : actions/setup-node@v4
123
124
with :
124
125
node-version : ${{ inputs.node_version }}
125
126
cache : ${{ inputs.js_package_manager }}
@@ -142,7 +143,7 @@ jobs:
142
143
working-directory : ${{ inputs.frontend_directory }}
143
144
144
145
- name : JS Checks & Production Build
145
- uses : flarum/action-build@v3
146
+ uses : flarum/action-build@v4
146
147
with :
147
148
github_token : ${{ secrets.GITHUB_TOKEN }}
148
149
build_script : ${{ inputs.build_script }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "skipLibCheck" : true ,
3
4
"allowUmdGlobalAccess" : true ,
4
5
"sourceMap" : true ,
5
6
"strict" : true ,
You can’t perform that action at this time.
0 commit comments