We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9485922 commit 854020dCopy full SHA for 854020d
1 file changed
dev/release/js-verify-release-candidate.sh
@@ -90,16 +90,11 @@ tar xvzf ${DIST_NAME}.tar.gz
90
cd ${DIST_NAME}
91
92
npm install
93
-# clean, lint, and build JS source
94
-npm run clean:all
95
-npm run lint
96
-npm run build
97
-# create initial integration test data
98
-npm run create:testdata
99
-# run once to write the snapshots
100
-npm test -- -t ts -u --integration
101
-# run again to test all builds against the snapshots
102
-npm test -- --integration
+# npx run-s clean:all lint create:testdata build
+# npm run test -- -t ts -u --integration
+# npm run test -- --integration
+npx run-s clean:all lint build
+npm run test
103
104
echo 'Release candidate looks good!'
105
exit 0
0 commit comments