This repository was archived by the owner on Feb 5, 2026. It is now read-only.
LOG-25154 bump dockerode, give tmp write space to npm #35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker Image Start Test | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| base-image: [node-alpine, node-bullseye] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Start Test with base image ${{ matrix.base-image }} | |
| run: BUILD_TYPE=${{ matrix.base-image }} make start-test |