Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mike182uk committed Apr 10, 2023
1 parent 270b75d commit 422a416
Show file tree
Hide file tree
Showing 5 changed files with 4,980 additions and 3,217 deletions.
18 changes: 7 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
version: 2

updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "09:00"
timezone: Europe/London
open-pull-requests-limit: 10
ignore:
- dependency-name: tape
versions:
- 5.2.0
- package-ecosystem: npm
directory: /
schedule:
interval: monthly
ignore:
- dependency-name: got
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ on:
branches: [master]

jobs:
build:
main:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
node: [10, 11, 12]
node: [12, 14, 16, 18, latest]
os: [ubuntu-latest]
fail-fast: false

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v1
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

Expand All @@ -39,18 +39,18 @@ jobs:
run: npm run cover

- name: Upload test coverage
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{matrix.os}}-node-${{ matrix.node }}
parallel: true

finish:
name: Finalise test coverage
needs: build
needs: main
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@master
- uses: coverallsapp/github-action@v1
with:
parallel-finished: true
github-token: ${{ secrets.github_token }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 5.0.0

- Drop support for Node.js `< 12.0.0`

# 4.0.0

- Drop support for Node.js `< 10.0.0`
Expand Down
Loading

0 comments on commit 422a416

Please sign in to comment.