Skip to content

chore(deps-dev): bump lodash-es from 4.17.21 to 4.17.23 #45

chore(deps-dev): bump lodash-es from 4.17.21 to 4.17.23

chore(deps-dev): bump lodash-es from 4.17.21 to 4.17.23 #45

Workflow file for this run

name: Test PR
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Validate commit messages
uses: wagoid/commitlint-github-action@v6
with:
configFile: .commitlintrc.json
- uses: actions/setup-node@v5
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: make test
- name: Upload test coverage to Codacy
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l JavaScript -r coverage/lcov.info
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
continue-on-error: true
- name: Upload test coverage to Code Climate
uses: paambaati/codeclimate-action@v9.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: echo "Coverage already generated"
coverageLocations: coverage/lcov.info:lcov
continue-on-error: true