mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-01-14 07:14:20 +00:00
744621d13d
Bumps [actions/checkout](https://github.com/actions/checkout) from v2 to v2.3.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/master/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...b4483adec309c0d01a5435c5e24eb40de5773ad9) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
792 B
YAML
38 lines
792 B
YAML
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.3.0
|
|
- run: make build
|
|
- run: make cirun cmd="npm ci"
|
|
- run: make ciall
|