@@ -45,14 +45,14 @@ jobs:
45
45
- name : Use Node.js 20
46
46
uses : actions/setup-node@v4
47
47
with :
48
- cache : yarn
48
+ cache : npm
49
49
node-version : 20
50
50
51
51
- name : Install dependencies
52
- run : yarn install --frozen-lockfile --ignore-scripts
52
+ run : npm ci
53
53
54
54
- name : Prebuild
55
- run : yarn build
55
+ run : npm run build
56
56
57
57
- name : Upload artifacts
58
58
uses : actions/upload-artifact@v4
@@ -77,10 +77,10 @@ jobs:
77
77
submodules : true
78
78
79
79
- name : Install dependencies
80
- run : yarn install --frozen-lockfile --ignore-scripts
80
+ run : npm ci
81
81
82
82
- name : Prebuild
83
- run : yarn build
83
+ run : npm run build
84
84
85
85
- name : Upload artifacts
86
86
uses : actions/upload-artifact@v4
@@ -105,10 +105,10 @@ jobs:
105
105
submodules : true
106
106
107
107
- name : Install dependencies
108
- run : yarn install --frozen-lockfile --ignore-scripts
108
+ run : npm ci
109
109
110
110
- name : Prebuild
111
- run : yarn build
111
+ run : npm run build
112
112
113
113
- name : Upload artifacts
114
114
uses : actions/upload-artifact@v4
@@ -134,10 +134,10 @@ jobs:
134
134
dockerRunArgs : --volume "${PWD}:/repo" --workdir /repo
135
135
install : |
136
136
apk add --update make g++ python3
137
- apk add --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/v3.19/main/ nodejs~=20 yarn
137
+ apk add --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/v3.19/main/ nodejs~=20 npm
138
138
run : |
139
- yarn install --frozen-lockfile --ignore-scripts
140
- yarn build
139
+ npm ci
140
+ npm run build
141
141
142
142
- name : Upload artifacts
143
143
uses : actions/upload-artifact@v4
@@ -159,10 +159,10 @@ jobs:
159
159
uses : vmactions/freebsd-vm@v1
160
160
with :
161
161
prepare : |
162
- pkg install -y gmake python3 yarn -node20
162
+ pkg install -y gmake python3 npm -node20
163
163
run : |
164
- yarn install --frozen-lockfile --ignore-scripts
165
- yarn build
164
+ npm ci
165
+ npm run build
166
166
sync : sshfs
167
167
168
168
- name : Upload artifacts
@@ -195,7 +195,7 @@ jobs:
195
195
run : mkdir prebuilds && cp --recursive prebuild-*/* prebuilds/
196
196
197
197
- name : Pack package
198
- run : yarn prepare && yarn pack
198
+ run : npm pack
199
199
200
200
- name : Upload package artifact
201
201
uses : actions/upload-artifact@v4
0 commit comments