Skip to content

Commit

Permalink
chore(ci): install peer dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Feb 17, 2021
1 parent 7151775 commit e1e664d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: |
npm install
npm i warframe-items@latest
npm run lint
test:
name: Test
runs-on: ubuntu-latest
Expand All @@ -39,6 +41,7 @@ jobs:
CI: true
run: |
npm install
npm i warframe-items@latest
npm test
- name: Coveralls Parallel
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Supplemental Dependencies
run: npm i
run: |
npm i
npm i warframe-items@latest
- name: Build
uses: andstor/jsdoc-action@v1
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ jobs:
- name: Test
run: |
npm install
npm i warframe-items@latest
npm test

0 comments on commit e1e664d

Please sign in to comment.