Skip to content

chore(deps-dev): bump rollup from 4.21.0 to 4.21.1 in the rollup group #487

chore(deps-dev): bump rollup from 4.21.0 to 4.21.1 in the rollup group

chore(deps-dev): bump rollup from 4.21.0 to 4.21.1 in the rollup group #487

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
env:
CI: true
jobs:
test-and-build:
name: 'Test and build'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- uses: actions/upload-artifact@v4
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 }}