feat: adds basic smoke test

This commit is contained in:
Tim Brust 2020-01-28 20:19:38 +01:00
parent fc1e9e2bc8
commit 94e12ee872
No known key found for this signature in database
GPG Key ID: 94EA4986FA50F11B

13
.github/workflows/dockerimage.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Test Docker image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: |
docker run -i $(docker build -q 10) /bin/sh -c "node --version && git --version"
docker run -i $(docker build -q 12) /bin/sh -c "node --version && git --version"