Commit 8dc3660 1 parent ad48307 commit 8dc3660 Copy full SHA for 8dc3660
File tree 1 file changed +17
-6
lines changed
1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: test
3
3
4
4
env :
5
5
NODE_VERSION : 20
6
+ PNPM_VERSION : 8.15.1
6
7
7
8
on :
8
9
push :
@@ -21,22 +22,32 @@ jobs:
21
22
with :
22
23
# Number of commits to fetch. 0 indicates all history.
23
24
fetch-depth : 0
25
+
24
26
- name : Setup pnpm
25
- uses : pnpm/action-setup@v3
27
+ uses : pnpm/action-setup@v4
26
28
with :
27
- version : 8
29
+ version : ${{ env.PNPM_VERSION }}
30
+ run_install : false
31
+
28
32
- name : Setup Node.js environment
29
33
uses : actions/setup-node@v4
30
34
with :
31
35
node-version : ${{ env.NODE_VERSION }}
32
36
cache : pnpm
37
+
38
+ - name : Install dependencies
39
+ run : pnpm install
40
+
41
+ - name : List files
42
+ run : ls -alt
43
+
33
44
- name : Run bash commands
34
45
shell : bash
35
46
run : |
36
- ls -alt
37
-
38
- # install deps
39
- pnpm install
47
+ # logger
48
+ npx lerna run --scope @adguard/logger lint
49
+ npx lerna run --scope @adguard/logger test
50
+ npx lerna run --scope @adguard/logger build
40
51
41
52
# css-tokenizer
42
53
npx lerna run --scope @adguard/css-tokenizer check-types
You can’t perform that action at this time.
0 commit comments