Skip to content

docs: add a multi-editor install guide for the extension #65

docs: add a multi-editor install guide for the extension

docs: add a multi-editor install guide for the extension #65

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 Max Trunnikov
# SPDX-License-Identifier: MIT
---
name: coverage
'on':
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: coverage-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 22
- run: npm install
- run: npm run coverage
- uses: codecov/codecov-action@v7
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: false