This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
Rename Dalichecklist.yaml to Daily-checklist.yaml #80
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: Docker Image CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image Nodejs 10 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 10 | |
- name: Build the Docker image Nodejs 12 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 12 | |
- name: Build the Docker image Nodejs 13 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 13 | |
- name: Build the Docker image Nodejs 14 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 14 | |
- name: Build the Docker image Nodejs 16 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 16 | |
- name: Build the Docker image Nodejs 17 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 17 | |
- name: Build the Docker image Nodejs 18 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 18 | |
- name: Build the Docker image Nodejs 19 | |
run: docker-compose build | |
env: | |
NODEJS_VERSION: 19 |