v5.0.1 #55
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: Internal Tests | |
run: npm test | |
- name: Dockerode Tests | |
run: | | |
cd ../dockerode | |
rm -rf ./node_modules/docker-modem | |
pwd | |
ls ../ | |
cp -R ../docker-modem ./node_modules/docker-modem | |
npm test | |
build_bun: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
- name: Provisioning | |
run: | | |
docker --version | |
bun -v | |
docker pull ubuntu | |
pwd | |
cd ../ | |
git clone --depth=50 --branch=master https://github.com/apocas/dockerode.git | |
cd dockerode | |
bun install | |
cd ../docker-modem | |
- name: Bun install | |
run: bun install | |
- name: Internal Tests | |
run: bun run test | |
- name: Dockerode Tests | |
run: | | |
cd ../dockerode | |
rm -rf ./node_modules/docker-modem | |
pwd | |
ls ../ | |
cp -R ../docker-modem ./node_modules/docker-modem | |
bun run test |