Skip to content

fix(deps): update dependency pino to v9 #307

fix(deps): update dependency pino to v9

fix(deps): update dependency pino to v9 #307

Workflow file for this run

name: Test
"on":
push: {}
pull_request:
types:
- opened
- synchronize
jobs:
integration:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 18
- run: npm ci
- run: npm test
createComment:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 18
- run: npm ci
- run: node test/fixtures/app.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}