-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #219 from edx/efischer/use_ci
fix(ci): use npm ci on travis
- Loading branch information
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
language: node_js | ||
node_js: | ||
- 8.11 | ||
install: | ||
- npm i -g [email protected] | ||
- npm ci | ||
branches: | ||
only: | ||
- master | ||
- "/v\\d+\\.\\d+\\.d+$/" | ||
cache: | ||
directories: | ||
- node_modules | ||
- "$HOME/.npm" | ||
stages: | ||
- PR checks ✅ | ||
- name: "Ship It \U0001F6A2" | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ FROM node:8.11 | |
USER root | ||
RUN apt-get update | ||
RUN apt-get install -y vim | ||
RUN npm i -g [email protected] | ||
|
||
WORKDIR /prebuilt | ||
COPY package.json . | ||
|
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