docker-node-alpine-git-gyp/.github/workflows/dockerimage.yml
dependabot[bot] d9f71ca2c0
build(deps): bump actions/checkout from 2.3.5 to 2.4.0 (#145)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-11-03 10:01:16 +00:00

15 lines
518 B
YAML

name: Test Docker image
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- name: Build the Docker image
run: |
docker run -i $(docker build -q 12) /bin/sh -c "node --version && npm --version && git --version"
docker run -i $(docker build -q 14) /bin/sh -c "node --version && npm --version && git --version"
docker run -i $(docker build -q 16) /bin/sh -c "node --version && npm --version && git --version"