2020-03-27 11:07:48 +01:00
|
|
|
name: 'Dev Image CI'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-17 08:38:09 +02:00
|
|
|
- main
|
2020-03-27 11:07:48 +01:00
|
|
|
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:
|
2022-08-29 17:06:54 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2020-03-27 11:07:48 +01:00
|
|
|
steps:
|
2022-03-02 03:40:05 +01:00
|
|
|
- uses: actions/checkout@v3
|
2020-03-27 11:07:48 +01:00
|
|
|
- run: make build
|
|
|
|
- run: make cirun cmd="npm ci"
|
2020-11-21 03:27:14 +01:00
|
|
|
# - run: make ciall
|
|
|
|
- run: make cirun cmd="npm run format:check"
|
|
|
|
- run: make cirun cmd="npm run lint"
|