docker-node-alpine-git-gyp/.github/workflows/dockerimage.yml

18 lines
1.3 KiB
YAML
Raw Normal View History

2020-01-28 22:19:38 +03:00
name: Test Docker image
2022-02-17 15:35:16 +03:00
on: [push, pull_request, workflow_dispatch]
2020-01-28 22:19:38 +03:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2020-01-28 22:19:38 +03:00
- name: Build the Docker image
run: |
2022-11-16 17:18:46 +03:00
docker run -i $(docker build -q 14) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v && pkgconf --version"
docker run -i $(docker build -q 16) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v && pkgconf --version"
docker run -i $(docker build -q 14-3.13) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v && pkgconf --version"
docker run -i $(docker build -q 16-3.13) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v && pkgconf --version"
docker run -i $(docker build -q 16) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v && pkgconf --version"
2022-11-16 17:20:54 +03:00
docker run -i $(docker build -q 18) /bin/sh -c "node --version && npm --version && bash --version && ssh -V && git --version && python3 -V && make -v && g++ -v && pkgconf --version"