Merge pull request #23 from deeagle/dependabot/docker/alpine-3.20 #59
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- master | |
- main | |
jobs: | |
lint-readme: | |
name: Lint readme file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Lint readme file | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
#rules: '/lint/rules/changelog.js' | |
#config: '/lint/config/changelog.yml' | |
args: '*.md' | |
ignore: 'CHANGELOG.md' | |
lint-dockerfile: | |
name: Lint Dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint dockerfile | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: Dockerfile |