chore: remove old add new node versions #99
Workflow file for this run
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
on: push | |
name: Lint all Dockerfiles | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Haskell Dockerfile Linter | |
uses: docker://cdssnc/docker-lint-github-action | |
with: | |
# https://github.com/hadolint/hadolint/wiki/DL3008 | |
# https://github.com/hadolint/hadolint/wiki/DL3013 | |
# https://github.com/hadolint/hadolint/wiki/DL3016 | |
# https://github.com/hadolint/hadolint/wiki/DL3018 | |
# https://github.com/hadolint/hadolint/wiki/DL3015 | |
# https://github.com/hadolint/hadolint/wiki/DL3006 Make it work to build multiple node versions in one dockerfile via matrix build | |
args: --ignore DL3008 --ignore DL3013 --ignore DL3016 --ignore DL3018 --ignore DL3015 --ignore DL3006 |