File tree 7 files changed +2887
-2729
lines changed
7 files changed +2887
-2729
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Check out code
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
with :
14
14
fetch-depth : 2
15
15
- name : Setup Node.js environment
16
- uses : actions/setup-node@v3
16
+ uses : actions/setup-node@v4
17
17
with :
18
- node-version : 18
19
- - run : corepack enable yarn
20
- - id : yarn
21
- run : echo "cache-dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
22
- - uses : actions/cache@v3
23
- name : Setup pnpm cache
18
+ node-version : 20
19
+ - name : Get npm cache directory
20
+ id : npm-cache-dir
21
+ shell : bash
22
+ run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
23
+ - uses : actions/cache@v4
24
+ name : Setup npm cache
24
25
with :
25
- path : ${{ steps.yarn .outputs.cache- dir }}
26
- key : ${{ runner.os }}-yarn -${{ hashFiles('**/yarn. lock') }}
26
+ path : ${{ steps.npm-cache-dir .outputs.dir }}
27
+ key : ${{ runner.os }}-npm -${{ hashFiles('**/package- lock.json ') }}
27
28
restore-keys : |
28
- ${{ runner.os }}-yarn -
29
+ ${{ runner.os }}-npm -
29
30
- name : Install dependencies
30
- run : yarn
31
+ run : npm install
31
32
- name : Install Playwright Browsers
32
- run : yarn playwright install --with-deps chromium
33
+ run : npx playwright install --with-deps chromium
33
34
- name : Run Unit tests
34
- run : yarn vitest
35
+ run : npx vitest
35
36
- name : Run Playwright tests
36
- run : yarn playwright test
37
+ run : npx playwright test
37
38
- uses : actions/upload-artifact@v3
38
39
if : always()
39
40
with :
Original file line number Diff line number Diff line change @@ -122,10 +122,6 @@ dist
122
122
# Stores VSCode versions used for testing VSCode extensions
123
123
.vscode-test
124
124
125
- # yarn v2
126
- .yarn /
127
- .pnp. *
128
-
129
125
# playwright
130
126
/test-results /
131
127
/playwright-report /
Original file line number Diff line number Diff line change 1
1
{
2
- "recommendations" : [" ZixuanChen. vitest- explorer" , " ms-playwright.playwright" ]
2
+ "recommendations" : [" vitest. explorer" , " ms-playwright.playwright" ]
3
3
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments