Skip to content

Commit

Permalink
add some spacing for easier reading
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio committed Aug 4, 2020
1 parent fcb1100 commit b7912cf
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: 12

- uses: actions/checkout@v2

- uses: actions/cache@v2
id: cache-deps
with:
path: |
node_modules
*/*/node_modules
key: 2-${{ runner.os }}-node12-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node12-${{ hashFiles('**/package-lock.json') }}

- run: bash ./scripts/install.sh
if: steps.cache-deps.outputs.cache-hit != 'true'

- run: bash ./scripts/ci.sh
unit:
runs-on: ubuntu-latest
Expand All @@ -41,16 +45,20 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- uses: actions/checkout@v2

- uses: actions/cache@v2
id: cache-deps
with:
path: |
node_modules
*/*/node_modules
key: 2-${{ runner.os }}-node${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}

- run: bash ./scripts/install.sh
if: steps.cache-deps.outputs.cache-hit != 'true'

- run: bash ./scripts/ci.sh
e2e:
runs-on: ubuntu-latest
Expand All @@ -72,16 +80,20 @@ jobs:
with:
node-version: 12
- uses: actions/checkout@v2

- uses: actions/cache@v2
id: cache-deps
with:
path: |
node_modules
*/*/node_modules
key: 2-${{ runner.os }}-node12-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node12-${{ hashFiles('**/package-lock.json') }}

- run: bash ./scripts/install.sh
if: steps.cache-deps.outputs.cache-hit != 'true'

- run: bash ./scripts/ci.sh

- name: Send coverage reports to Coveralls
if: env.TEST == 'unit_and_e2e_clients'
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit b7912cf

Please sign in to comment.