Skip to content

chore(deps-dev): bump the fastify group across 1 directory with 4 updates #905

chore(deps-dev): bump the fastify group across 1 directory with 4 updates

chore(deps-dev): bump the fastify group across 1 directory with 4 updates #905

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
env:
CI: true
jobs:
test-and-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ['20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- uses: actions/upload-artifact@v4
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
with:
name: code-coverage
path: coverage
upload-code-coverage:
name: 'Upload code coverage'
needs: ['test-and-build']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: code-coverage
path: coverage
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}