Add tests to action
Some checks failed
ci / build-image (push) Successful in 56s
ci / test-image (push) Failing after 6s

This commit is contained in:
Jonathan Cremin 2025-06-12 18:18:57 +01:00
parent 91d9af097d
commit 3cace2860f
5 changed files with 83 additions and 40 deletions

View file

@ -7,7 +7,7 @@
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production --config webpack.config.cjs && NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.config.server.cjs",
"start": "node app.js",
"worker": "node worker.js",
"test": "mocha-esm test/**/*.js test/lookup.js --timeout=15000",
"test": "mocha-esm test/services/deezer.js test/services/itunes.js test/services/spotify.js test/services/youtube.js test/lookup.js --timeout=15000",
"watch": "concurrently -k \"npm:watch-js\" \"npm:watch-server\"",
"watch-js": "NODE_OPTIONS=--openssl-legacy-provider concurrently -k -n webpack-frontend,webpack-server \"webpack -w -d --config webpack.config.cjs\" \"webpack -w --config webpack.config.server.cjs\"",
"watch-server": "nodemon -e js,vue -i node_modules -i chrome/ app.js",