Skip to content

Commit

Permalink
Make dependabot ignore @types/node (as I will probably only use LTS) …
Browse files Browse the repository at this point in the history
…but nothing else
  • Loading branch information
thomasdondorf committed Jan 23, 2022
1 parent 06cde37 commit e7b88cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 24 deletions.
23 changes: 2 additions & 21 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,8 @@ updates:
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 10
open-pull-requests-limit: 5
ignore:
- dependency-name: jest
versions:
- "> 24.9.0"
- dependency-name: ts-jest
versions:
- "> 24.3.0"
- dependency-name: "@types/jest"
versions:
- "> 24.9.1"
- dependency-name: "@types/node"
versions:
- 14.14.17
- 14.14.22
- dependency-name: "@types/puppeteer"
versions:
- 5.4.2
- dependency-name: puppeteer-core
versions:
- 5.5.0
- dependency-name: bl
versions:
- 4.0.3
- "*"
7 changes: 4 additions & 3 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
flag-name: run_node-v${{ matrix.node }}_pptr-${{ matrix.puppeteer_version }}_os-${{ matrix.os }}
parallel: true

finished:
report-coverage:
needs: test
runs-on: ubuntu-latest
steps:
Expand All @@ -65,15 +65,16 @@ jobs:

publish:
if: github.event_name == 'push' # && contains(github.ref, 'refs/tags/v')
needs: finished
needs: report-coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- name: npm ci
uses: bahmutov/npm-install@v1
- run: npm run build
- run: echo 'Just simulating for now'
# - run: npm publish
Expand Down

0 comments on commit e7b88cb

Please sign in to comment.