diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 4b07fbf76189a..a7ba91f64ab4b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -42,6 +42,7 @@ jobs: matrix: # Current docker version + next LTS node-version: [20.x, 22.x] + python-version: [3.11] fail-fast: false steps: @@ -65,6 +66,10 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} + - name: Install Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"