File tree 1 file changed +13
-5
lines changed
1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 10
10
- " test/**"
11
11
- " typings/**"
12
12
- " package.json"
13
- - " .github/workflows/linux- prebuild.yml"
13
+ - " .github/workflows/prebuild-linux .yml"
14
14
pull_request :
15
15
branches : [ "master" ]
16
16
paths :
20
20
- " test/**"
21
21
- " typings/**"
22
22
- " package.json"
23
- - " .github/workflows/linux- prebuild.yml"
23
+ - " .github/workflows/prebuild-linux .yml"
24
24
25
25
env :
26
26
OPENCV4NODEJS_DISABLE_AUTOBUILD : 1
@@ -41,17 +41,25 @@ jobs:
41
41
- 20
42
42
43
43
steps :
44
- - uses : actions/checkout@v3
44
+ - uses : actions/checkout@v4
45
45
- name : Install OpenCV ${{ matrix.opencv_version }}
46
46
run : |
47
47
sudo apt update
48
48
sudo apt install libopencv-dev
49
49
50
- - uses : actions/setup-node@v4
50
+ - name : Install Node.js ${{ matrix.node_version }}
51
+ uses : actions/setup-node@v4
51
52
with :
52
53
node-version : ${{ matrix.node_version }}
53
- cache : ' pnpm'
54
54
55
+ - uses : pnpm/action-setup@v3
56
+ name : Install pnpm
57
+ with :
58
+ version : 8
59
+ run_install : |
60
+ - recursive: true
61
+ args: [--frozen-lockfile, --strict-peer-dependencies]
62
+
55
63
- name : pnpm run prepack
56
64
run : pnpm run prepack
57
65
You can’t perform that action at this time.
0 commit comments