Skip to content

chore(deps): bump simple-git from 3.19.0 to 3.19.1 #4679

chore(deps): bump simple-git from 3.19.0 to 3.19.1

chore(deps): bump simple-git from 3.19.0 to 3.19.1 #4679

#
# Copyright (c) 2020-2021 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
name: typescript
on:
pull_request:
paths:
- '**/package.json'
- 'tools/**/*.ts'
- '.github/workflows/typescript-pr-check.yml'
push:
paths:
- '**/package.json'
- 'tools/**/*.ts'
- '.github/workflows/typescript-pr-check.yml'
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Clone source code
uses: actions/checkout@v3
with:
fetch-depth: 10
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-
- name: typescript
run: |
yarn --version
yarn
yarn --cwd ./tools/build/ run build
- name: report-coverage
uses: codecov/codecov-action@v3
with:
files: ./tools/pr-check/coverage/coverage-final.json,./tools/build/coverage/coverage-final.json