mirror of
https://github.com/Neur0toxine/docker-node-alpine-git-gyp.git
synced 2024-11-24 21:36:03 +03:00
d9f71ca2c0
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
15 lines
518 B
YAML
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"
|