28 lines
634 B
YAML
28 lines
634 B
YAML
|
name: Dockerfile Lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
hadolint:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
dockerfile:
|
||
|
- docker/nginx/Dockerfile
|
||
|
- docker/sia/Dockerfile
|
||
|
- packages/dashboard/Dockerfile
|
||
|
- packages/dnslink-api/Dockerfile
|
||
|
- packages/handshake-api/Dockerfile
|
||
|
- packages/health-check/Dockerfile
|
||
|
- packages/website/Dockerfile
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: hadolint/hadolint-action@v2.0.0
|
||
|
with:
|
||
|
dockerfile: ${{ matrix.dockerfile }}
|