chore(deps-dev): bump concurrently from 8.2.2 to 9.0.0 #5718
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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@v4 | |
with: | |
node-version: '18' | |
- name: Clone source code | |
uses: actions/checkout@v4 | |
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@v4 | |
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@v4 | |
with: | |
files: ./tools/pr-check/coverage/coverage-final.json,./tools/build/coverage/coverage-final.json |