actions-hugo/.github/workflows/dev-image.yml
dependabot[bot] 86a3c300c7
ci: bump actions/checkout from 2.3.5 to 2.4.0 (#548)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-11-03 16:19:33 +09:00

33 lines
672 B
YAML

name: 'Dev Image CI'
on:
push:
branches:
- main
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:
dev-image-test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2.4.0
- run: make build
- run: make cirun cmd="npm ci"
# - run: make ciall
- run: make cirun cmd="npm run format:check"
- run: make cirun cmd="npm run lint"