File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments