Skip to content

build(deps): bump coverallsapp/github-action from 2.3.2 to 2.3.3 (#447) #1221

build(deps): bump coverallsapp/github-action from 2.3.2 to 2.3.3 (#447)

build(deps): bump coverallsapp/github-action from 2.3.2 to 2.3.3 (#447) #1221

Workflow file for this run

---
name: Node.JS CI
on: # yamllint disable-line rule:truthy
push:
paths-ignore:
- "*.md"
pull_request:
paths-ignore:
- "*.md"
permissions: read-all
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [22]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Cache node modules
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm ci
- name: Validate dependency licenses
run: |
npm run license-checker
- name: Start MongoDB in docker
uses: DigiPie/mongo-action@6d27db18a4ce1bb707cd221e3408e5c7a8590c8c
with:
image_version: latest
port: 27017
- name: Run tests
run: |
npm run coverage:lcov
env:
CI: true
MONGODB_URI: mongodb://localhost:27017/test-db # use mongoDB docker
- name: Coveralls Parallel
uses: coverallsapp/github-action@4cdef0b2dbe0c9aa26bed48edb868db738625e79
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.os }}-${{ matrix.node-version }}
parallel: true
coverage:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@4cdef0b2dbe0c9aa26bed48edb868db738625e79
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
automerge:
if: >
github.event_name == 'pull_request' &&
github.event.pull_request.user.login == 'dependabot[bot]'
needs: test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@0fa926bf56cf573a599afcc6d39b25b734fd6252
with:
github-token: ${{secrets.GITHUB_TOKEN}}