Skip to content

chore(deps): update dependency @types/vscode to v1.105.0 #172

chore(deps): update dependency @types/vscode to v1.105.0

chore(deps): update dependency @types/vscode to v1.105.0 #172

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: codecov
'on':
push:
branches:
- master
- development
jobs:
codecov:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 23
- uses: actions/setup-node@v5
with:
node-version: 22.x
- run: npm i
- run: make test
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}