File tree 3 files changed +24
-2
lines changed
packages/sqlite-storage/tests
3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 5
5
required : false
6
6
description : node version to install
7
7
default : 20.10.0 # is already cached in Ubuntu 22.04 runner
8
+ windows-fix :
9
+ required : false
10
+ description : https://github.com/actions/setup-node/issues/899#issuecomment-1837381044
11
+ default : " false"
8
12
runs :
9
13
using : composite
10
14
steps :
15
+ - uses : actions/setup-node@v4
16
+ if : ${{ inputs.windows-fix == 'true' }}
17
+ name : (Windows fix) Setup node without cache
18
+ with :
19
+ node-version : ${{ inputs.node-version }}
11
20
- name : Enable corepack
12
21
shell : bash
13
22
run : |
Original file line number Diff line number Diff line change @@ -123,6 +123,21 @@ jobs:
123
123
uses : actions/checkout@v4
124
124
- name : Setup project
125
125
uses : ./.github/actions/setup-project
126
+ with :
127
+ windows-fix : true
128
+ - uses : actions/setup-node@v4
129
+ with :
130
+ node-version : ${{ inputs.node-version }}
131
+ cache : " yarn"
132
+ - name : Enable corepack
133
+ shell : bash
134
+ run : |
135
+ corepack enable
136
+ yarn --version
137
+ - uses : actions/setup-node@v4
138
+ with :
139
+ node-version : ${{ inputs.node-version }}
140
+ cache : " yarn"
126
141
- name : Set up MSBuild
127
142
128
143
- name : Setup VSTest.console.exe
Original file line number Diff line number Diff line change 1
1
it . todo ( "write a test" ) ;
2
-
3
- function x ( _ : number ) { }
You can’t perform that action at this time.
0 commit comments