diff --git a/.github/workflows/alpine.yml b/.github/workflows/alpine.yml index 65e20a7db..1ab1c0544 100644 --- a/.github/workflows/alpine.yml +++ b/.github/workflows/alpine.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: node:${{ matrix.node }}-alpine${{ matrix.alpine }} + image: node:${{ matrix.node }}-alpine strategy: fail-fast: false matrix: @@ -25,17 +25,17 @@ jobs: - node: 10 alpine: "3.9" - node: 12 - alpine: "3.9" + python: python2 - node: 14 - alpine: "3.10" + python: python3 - node: 15 - alpine: "3.10" + python: python3 - node: 16 - alpine: "3.11" + python: python3 steps: - name: Install Alpine build tools - run: apk add --no-cache python make git gcc g++ + run: apk add --no-cache ${{ matrix.python }} make git gcc g++ - uses: actions/checkout@v2