From 5081a17a87c1afad5d265a5ebfc434ee6590c733 Mon Sep 17 00:00:00 2001 From: ranieri innocenti Date: Fri, 13 Oct 2023 16:46:19 +0200 Subject: [PATCH] Updating for v9: update dependencies and CI --- .github/workflows/ci.yml | 15 ++++++++++----- package.json | 4 ++-- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac39b54..50d9f7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,19 +20,24 @@ jobs: fail-fast: false matrix: os: [macOS-latest, windows-latest, ubuntu-latest] - node-version: [14, 16, 18] + node-version: [18, 20] steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Check out repo + uses: actions/checkout@v4 + + - name: Setup Node ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - name: Install + + - name: Install dependencies run: npm i - - name: Tests + + - name: Run tests run: npm test automerge: + name: Automerge Dependabot PRs needs: test runs-on: ubuntu-latest permissions: diff --git a/package.json b/package.json index d23a950..1b0379c 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "homepage": "https://github.com/davidmarkclements/koa-pino-logger#readme", "dependencies": { - "pino-http": "^7.0.0" + "pino-http": "git+https://github.com/pinojs/pino-http.git#next" }, "devDependencies": { "koa": "^2.13.1", @@ -33,6 +33,6 @@ "koa-morgan": "^1.0.1", "split2": "^4.1.0", "standard": "^17.0.0", - "tap": "^16.0.0" + "tap": "^16.3.9" } }