Integrate the dustjs official helpers into the test framework.

This commit is contained in:
Tom Alexander
2020-05-10 13:43:32 -04:00
parent f9212d1fe4
commit 012028b0bc
4 changed files with 24 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ RUN addgroup -S duster && adduser -S duster -G duster
# Install LinkedIn DustJS. Installing it globally before copying in
# the repo to avoid spamming the npm servers with every codebase
# change.
RUN npm install -g dustjs-linkedin
RUN npm install -g dustjs-linkedin dustjs-helpers
# Copy repo into duster user's directory
@@ -22,5 +22,5 @@ RUN chown -R duster:duster /home/duster/duster
USER duster
RUN git clean -dfxq
RUN cargo build
RUN npm link dustjs-linkedin
RUN npm link dustjs-linkedin dustjs-helpers
ENTRYPOINT ["/home/duster/duster/js/run_compliance_suite.bash"]