Skip to content

Commit

Permalink
ci: install peer deps before building
Browse files Browse the repository at this point in the history
  • Loading branch information
davguij committed Jun 20, 2020
1 parent 93c04f7 commit 8743d06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
CI: true

- name: Install peer dependencies
run: npm i axios rxjs
run: npm i axios rxjs --no-save
env:
CI: true

Expand Down Expand Up @@ -63,6 +63,11 @@ jobs:
env:
CI: true

- name: Install peer dependencies
run: npm i axios rxjs --no-save
env:
CI: true

- name: Build
run: npm run build
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### A RxJS wrapper for axios

[![npm](https://badgen.net/npm/v/rxios?color=red&icon=npm)]() [![bundlephobia](https://badgen.net/bundlephobia/minzip/rxios)]()
[![npm](https://badgen.net/npm/v/rxios?color=red&icon=npm)]() ![CI](https://github.com/davguij/rxios/workflows/CI/badge.svg) [![bundlephobia](https://badgen.net/bundlephobia/minzip/rxios)]()

Rxios makes the awesome [axios](https://github.com/axios/axios) library reactive, so that it's responses are returned as [RxJS](https://github.com/ReactiveX/rxjs) observables.

Expand Down

0 comments on commit 8743d06

Please sign in to comment.