Fix handling of SSH network errors #73
This file contains 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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build_nodejs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 18.x, 19.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Provisioning | |
run: | | |
docker --version | |
node -v | |
docker pull ubuntu | |
pwd | |
cd ../ | |
git clone --depth=50 --branch=master https://github.com/apocas/dockerode.git | |
cd dockerode | |
npm install | |
cd ../docker-modem | |
- name: NPM install | |
run: npm install | |
- name: NPM test | |
run: npm test | |
- name: Dockerode test suite | |
run: | | |
cd ../dockerode | |
rm -rf ./node_modules/docker-modem | |
pwd | |
ls ../ | |
cp -R ../docker-modem ./node_modules/docker-modem | |
npm test |