Skip to content

Commit 56ac2f5

Browse files
Move smoke testing up
Removed redundant npm install and smoke test execution.
1 parent f9a5228 commit 56ac2f5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
git clone --recursive https://github.com/uNetworking/uWebSockets.js.git
2525
cd uWebSockets.js
2626
${{ matrix.os == 'windows-latest' && 'nmake' || 'make' }}
27+
npm install ws
28+
node tests/smoke.js
2729
git fetch origin binaries:binaries
2830
git checkout binaries
2931
cp dist/*.node .
@@ -35,6 +37,3 @@ jobs:
3537
git config --global user.name "Alex Hultman"
3638
git commit -a -m "[GitHub Actions] Updated ${{ matrix.os }} binaries" || true
3739
git push "https://unetworkingab:${{ secrets.SECRET }}@github.com/uNetworking/uWebSockets.js" binaries
38-
git checkout master -- tests/smoke.js
39-
npm install ws
40-
node tests/smoke.js

0 commit comments

Comments
 (0)