Skip to content
Snippets Groups Projects
Verified Commit ca3d6375 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: wip new pipeline

parent 96f743b4
No related branches found
No related tags found
No related merge requests found
...@@ -16,12 +16,20 @@ ...@@ -16,12 +16,20 @@
cd ''${CI_PROJECT_DIR} || exit 1 cd ''${CI_PROJECT_DIR} || exit 1
${pkgs.eza}/bin/eza -T ${pkgs.eza}/bin/eza -T -L2
echo "This script will run tests in the project working directory: ''${CI_PROJECT_DIR}" echo "This script will run tests in the project working directory: ''${CI_PROJECT_DIR}"
echo "The command is executed in the current working directory and not in a nix derivation." echo "The command is executed in the current working directory and not in a nix derivation."
TEST_CASES_PATH="''${CI_PROJECT_DIR}/test/cases/" TEST_CASES_PATH="''${CI_PROJECT_DIR}/test/cases/"
if ! ${pkgs.corepack}/bin/pnpm install
then
echo "Failed to install dependencies"
exit 1
fi
${pkgs.eza}/bin/eza -T -L2
if ! ${pkgs.nodePackages.mocha}/bin/mocha --colors --jobs 1 --bail --recursive ''${TEST_CASES_PATH} if ! ${pkgs.nodePackages.mocha}/bin/mocha --colors --jobs 1 --bail --recursive ''${TEST_CASES_PATH}
then then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment