Skip to content

build(deps): bump chromaui/action from 11.10.2 to 11.19.0 in /.github/workflows #196

build(deps): bump chromaui/action from 11.10.2 to 11.19.0 in /.github/workflows

build(deps): bump chromaui/action from 11.10.2 to 11.19.0 in /.github/workflows #196

Workflow file for this run

name: Test Check
on:
pull_request:
jobs:
test-check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
- name: Enable corepack
run: corepack enable
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests and collect coverage
run: pnpm run vitest --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Kartore/web