Skip to content

fix(deps): update dependency recharts to v2.9.1 #2730

fix(deps): update dependency recharts to v2.9.1

fix(deps): update dependency recharts to v2.9.1 #2730

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "[Web] Run Tests"
on:
pull_request:
paths:
- "web/**"
- ".github/workflows/web-test.yml"
defaults:
run:
working-directory: ./web
jobs:
test:
name: "[Global] Run Tests"
timeout-minutes: 20
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: signalco
TURBO_REMOTE_ONLY: true
container:
image: mcr.microsoft.com/playwright:v1.39.0-focal
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 'latest'
- uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "pnpm"
cache-dependency-path: ./web
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test