Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

Commit

Permalink
Install example app dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgan Laco committed Dec 12, 2018
1 parent 38f8961 commit afa11fe
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,25 @@ jobs:
- run:
name: Install mix dependencies
command: mix deps.get
- run:
name: Create database
command: mix ecto.create
- run:
name: Install node dependencies
command: yarn install
command: npm install
- run:
name: Install example app v2 node dependencies
working_directory: examples/example-phx-1_2
command: npm install
- run:
name: Install example app 1 node dependencies
name: Install example app v2 Hex dependencies
working_directory: examples/example-phx-1_2
command: yarn install
command: mix deps.get
- run:
name: Install example app 1 node dependencies
name: Install example app v3 node dependencies
working_directory: examples/example-phx-1_3
command: yarn install
command: npm install
- run:
name: Install example app v3 Hex dependencies
working_directory: examples/example-phx-1_3
command: mix deps.get
- run:
name: Run tests
command: ./bin/ci
Expand Down

0 comments on commit afa11fe

Please sign in to comment.