Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.2
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ LABEL maintainer="Josh Bielick <jbielick@adwerx.com>"

ENV BUNDLER_VERSION="2.1.4"
ENV ESLINT_VERSION="6.8.0"
ENV STYLELINT_VERSION="13.9.0"

RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
Expand All @@ -22,6 +23,7 @@ RUN apt-get update && \

RUN gem install bundler --version "${BUNDLER_VERSION}"
RUN npm install -g eslint@${ESLINT_VERSION}
RUN npm install stylelint@${STYLELINT_VERSION}

WORKDIR /runner

Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ gem 'pronto-flay'
gem 'pronto-fasterer'
gem 'pronto-scss'
gem 'pronto-erb_lint', '~>0.1'
gem 'pronto-stylelint'

# https://github.com/libgit2/rugged/issues/860
gem 'rugged', '~>0.28.5'
Expand Down
6 changes: 5 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ GEM
pronto-scss (0.10.0)
pronto (~> 0.10.0)
scss_lint (~> 0.43, >= 0.43.0)
pronto-stylelint (0.10.1)
pronto (~> 0.10.0)
rugged (>= 0.24, < 2.0)
pronto-yamllint (0.1.2)
pronto (~> 0.10.0)
pry (0.13.1)
Expand Down Expand Up @@ -286,6 +289,7 @@ DEPENDENCIES
pronto-reek
pronto-rubocop
pronto-scss
pronto-stylelint
pronto-yamllint
pry
rb-readline
Expand All @@ -297,7 +301,7 @@ DEPENDENCIES
rubocop-rake
rubocop-rspec
rubocop-thread_safety
rugged (~> 0.28.4)
rugged (~> 0.28.5)
webmock

BUNDLED WITH
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The docker image of this Action includes the following [Pronto Runners](https://
- rubocop
- scss
- yamllint
- stylelint

# Inputs

Expand Down