Skip to content

Commit 9036467

Browse files
committed
Credentials for e2e tests added
1 parent abd524f commit 9036467

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/CI.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,23 @@ jobs:
375375
image: ${{ steps.docker.outputs.IMAGE }}
376376
options: -v ${{ github.workspace }}:${{ github.workspace }} -w ${{ github.workspace }} --platform ${{ steps.docker.outputs.PLATFORM }} -e API_TOKEN=${{ secrets.API_TOKEN }} -e SERVER_URL=${{ vars.SERVER_URL }}
377377
run: |
378+
echo "=== glibc version ==="
378379
ldd --version
380+
381+
if [[ "${{ steps.docker.outputs.IMAGE }}" == "ubuntu:24.04" ]]; then
382+
echo "=== Installing Node.js ${{ matrix.node }} on Ubuntu 24.04 ==="
383+
apt-get update -qq
384+
apt-get install -y curl ca-certificates
385+
curl -fsSL https://deb.nodesource.com/setup_${{ matrix.node }}.x | bash -
386+
apt-get install -y nodejs
387+
npm install -g yarn
388+
389+
echo "=== Installed versions ==="
390+
node --version
391+
npm --version
392+
yarn --version
393+
394+
fi
379395
yarn test
380396
publish:
381397
name: Publish

0 commit comments

Comments
 (0)