Skip to content

Bump prettier from 3.1.1 to 3.2.4 #23

Bump prettier from 3.1.1 to 3.2.4

Bump prettier from 3.1.1 to 3.2.4 #23

name: Codacy Coverage Reporter
on: [ "push" ]
jobs:
codacy-coverage-reporter:
runs-on: ubuntu-latest
name: codacy-coverage-reporter
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci --audit=false
env:
CI: true
- name: Run audit
run: npm audit --json --audit-level=critical
- name: Run lint
run: npm run lint
- name: Run unit tests
run: npm run test
env:
CI: true
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1.3.0
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}