File tree Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Expand file tree Collapse file tree 3 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 13
13
- uses : " actions/checkout@v3"
14
14
with :
15
15
fetch-depth : 0
16
- - run : sudo apt-get install -y valgrind
16
+ - name : Install valgrind
17
+ run : |
18
+ sudo apt-get update
19
+ sudo apt-get install -y valgrind
17
20
- uses : pnpm/action-setup@v2
18
21
- uses : actions/setup-node@v3
19
22
with :
48
51
- uses : " actions/checkout@v3"
49
52
with :
50
53
fetch-depth : 0
51
- - run : sudo apt-get install -y valgrind
54
+ - name : Install valgrind
55
+ run : |
56
+ sudo apt-get update
57
+ sudo apt-get install -y valgrind
52
58
- uses : pnpm/action-setup@v2
53
59
- uses : actions/setup-node@v3
54
60
with :
Original file line number Diff line number Diff line change 13
13
- uses : " actions/checkout@v3"
14
14
with :
15
15
fetch-depth : 0
16
- - run : sudo apt-get install -y valgrind
16
+ - name : Install valgrind
17
+ run : |
18
+ sudo apt-get update
19
+ sudo apt-get install -y valgrind
17
20
- uses : pnpm/action-setup@v2
18
21
- uses : actions/setup-node@v3
19
22
with :
Original file line number Diff line number Diff line change 24
24
node-version-file : .nvmrc
25
25
registry-url : " https://registry.npmjs.org"
26
26
- run : pnpm install --frozen-lockfile --prefer-offline
27
- - run : sudo apt-get install -y valgrind
27
+ - name : Install valgrind
28
+ run : |
29
+ sudo apt-get update
30
+ sudo apt-get install -y valgrind
28
31
29
32
- name : Build the libraries
30
33
run : pnpm moon run :build
You can’t perform that action at this time.
0 commit comments