Merge pull request #1 from step-security/release #3
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: '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-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- 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" |