update pino (drops support for nodejs <=19) and eslint #80
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| services: | |
| dynamodb-local: | |
| image: amazon/dynamodb-local:latest | |
| ports: | |
| - 8000:8000 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: install deps | |
| run: npm ci | |
| - name: lint | |
| run: npm run-script lint | |
| - name: test | |
| run: npm run-script test | |
| env: | |
| AWS_REGION: eu-west-1 | |
| AWS_ACCESS_KEY_ID: dummy | |
| AWS_SECRET_ACCESS_KEY: dummy | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2 | |
| with: | |
| files: .tap/report/lcov.info |