Skip to content

build(deps): bump actions/cache from 4.1.1 to 4.1.2 #1166

build(deps): bump actions/cache from 4.1.1 to 4.1.2

build(deps): bump actions/cache from 4.1.1 to 4.1.2 #1166

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: [20]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
- 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@0a44ba7841725637a19e28fa30b79a866c81b0a6
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@43f11c4e058174f808ee9cd63701b6c42fe3f5e3
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@43f11c4e058174f808ee9cd63701b6c42fe3f5e3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
automerge:
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}}