ci: Add workflow for develop container

This commit is contained in:
Shohei Ueda 2020-03-27 17:59:39 +09:00 committed by GitHub
parent 1649bea4d0
commit 0ac5822f71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

37
.github/workflows/dev-image.yml vendored Normal file
View file

@ -0,0 +1,37 @@
name: 'Dev Image CI'
on:
push:
branches:
- master
paths:
- '.github/workflows/dev-image.yml'
- '.dockerignore'
- '.nvmrc'
- 'Dockerfile'
- 'Makefile'
pull_request:
types:
- opened
- synchronize
paths:
- '.github/workflows/dev-image.yml'
- '.dockerignore'
- '.nvmrc'
- 'Dockerfile'
- 'Makefile'
jobs:
skipci:
runs-on: ubuntu-18.04
steps:
- run: echo "[skip ci] ${{ contains(github.event.head_commit.message, '[skip ci]') }}"
dev-image-test:
runs-on: ubuntu-18.04
if: contains(github.event.head_commit.message, '[skip ci]') == false
steps:
- uses: actions/checkout@v2
- run: make build
#- run: make cirun cmd="npm ci"
#- run: make ciall