From aab2f846acaa6f5c0dba00a65af5f94a1bb6a4ff Mon Sep 17 00:00:00 2001 From: Lukas Holzer Date: Fri, 9 Aug 2024 18:03:38 +0200 Subject: [PATCH] chore: update --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0edee2f149..1c75e47631 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -142,23 +142,23 @@ jobs: output=$(npx netlify-e2e build-image ./remlink.config.json) pipelineId=$(echo $output | jq -r '.pipelineId') testImageTag=$(echo $output | jq -r '.tag') - workingDir="node_modules/@netlify/e2e" echo "export pipelineId=$pipelineId" >> $BASH_ENV echo "export testImageTag=$testImageTag" >> $BASH_ENV - echo "export workingDir=$workingDir" >> $BASH_ENV source $BASH_ENV - run: name: Echo extracted values command: | echo "The extracted pipelineId is: $pipelineId" echo "The extracted Tag is: $testImageTag" - echo "The working directory is: $workingDir" - ls -lah "$workingDir" + - run: + name: Install Browser Binaries + command: npx playwright install --with-deps chromium - run: name: Run playwright command: | ls -lah - working_directory: $workingDir + npx playwright test + working_directory: node_modules/@netlify/e2e # - name: Authenticate with private NPM package # run: | # echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_READ_ONLY_TOKEN }}" > /home/runner/work/_temp/.npmrc