-
Notifications
You must be signed in to change notification settings - Fork 2
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 #8 from justeat/v1.3.0
v2.0.0 - Remove IE support and replace Travis CI config file by Circle CI one
- Loading branch information
Showing
5 changed files
with
55 additions
and
25 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# version: 2.1 # use CircleCI 2.1 | ||
# | ||
# Check https://circleci.com/docs/language-javascript/ for more details | ||
# | ||
version: 2.1 | ||
|
||
workflows: | ||
build: | ||
jobs: | ||
- build: | ||
context: web-core | ||
|
||
|
||
jobs: | ||
build: | ||
docker: | ||
# specify the version you desire here | ||
- image: cimg/node:16.15 # For latest available images check – https://circleci.com/docs/2.0/docker-image-tags.json | ||
|
||
working_directory: ~/repo | ||
|
||
steps: # a collection of executable commands | ||
- checkout # special step to check out source code to working directory | ||
- restore_cache: | ||
name: Restore Yarn Package Cache | ||
keys: | ||
- yarn-packages-{{ checksum "yarn.lock" }} | ||
- run: | ||
name: Install Dependencies | ||
command: yarn install --frozen-lockfile | ||
- save_cache: | ||
name: Save Yarn Package Cache | ||
key: yarn-packages-{{ checksum "yarn.lock" }} | ||
paths: | ||
- ~/.cache/yarn | ||
- run: # Lint JS files | ||
name: Run Lint Task on files | ||
command: yarn lint | ||
- run: # run PR checks | ||
name: PR Checks (Dangerfile) | ||
command: yarn danger ci |
This file was deleted.
Oops, something went wrong.
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
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