Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Docs changes for GitHub Actions (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntolia committed May 24, 2022
1 parent 7f82dd5 commit ee379e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ LABEL MAINTAINER="Niraj Tolia"

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get -y update && apt-get -y install gpg emacs curl git \
RUN apt-get -y update && apt-get -y install gpg emacs curl git make \
&& curl -fsSL https://deb.nodesource.com/setup_current.x | bash - \
&& apt-get -y install nodejs \
&& apt-get autoclean \
Expand Down
6 changes: 5 additions & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ dev:
-p 3000:3000 \
-v ${PWD}:/usr/src/docs alcion/docs

check:
dockercheck:
docker run --rm \
-v ${PWD}:/usr/src/docs alcion/docs vale docs README.md
docker run --rm \
-v ${PWD}:/usr/src/docs alcion/docs markdownlint '**/*.md' --ignore styles/ --ignore src/ --ignore node_modules/

check:
vale docs README.md
markdownlint '**/*.md' --ignore styles/ --ignore src/ --ignore node_modules/

shell:
docker run --rm -it \
-p 3000:3000 \
Expand Down

0 comments on commit ee379e5

Please sign in to comment.