Skip to content

Commit

Permalink
ci: specify version of coveralls github action to use (#142)
Browse files Browse the repository at this point in the history
* style: add eof line

* ci: specify version of coveralls github action to use

allows dependabot to update properly

* ci: ignore install scripts
  • Loading branch information
Fdawgs committed Feb 11, 2021
1 parent d472980 commit 7fb8dfe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ updates:
directory: '/'
schedule:
interval: daily
open-pull-requests-limit: 10
open-pull-requests-limit: 10
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: CI
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
Expand All @@ -21,12 +23,12 @@ jobs:
uses: actions/setup-node@v2.1.4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm i
- name: Install Dependencies
run: npm install --ignore-scripts
- name: Tests
run: npm run test:ci
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.github_token }}
parallel: true
Expand All @@ -37,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
Expand Down

0 comments on commit 7fb8dfe

Please sign in to comment.