Skip to content

Bump @types/chrome from 0.0.254 to 0.0.260 #29

Bump @types/chrome from 0.0.254 to 0.0.260

Bump @types/chrome from 0.0.254 to 0.0.260 #29

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 }}