Skip to content

fix(deps): Update @gravity-ui/charts 1.46.0 -> 1.46.1 #1871

fix(deps): Update @gravity-ui/charts 1.46.0 -> 1.46.1

fix(deps): Update @gravity-ui/charts 1.46.0 -> 1.46.1 #1871

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref_name }}
cancel-in-progress: true
jobs:
verify_files:
name: Verify Files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install Packages
run: npm ci
- name: Lint Files
run: npm run lint
- name: Typecheck
run: npm run typecheck
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install Packages
run: npm ci
- uses: ./.github/actions/setup-playwright
- name: Tests
run: npm run test:unit -- --coverage
- uses: actions/upload-artifact@v6
with:
name: reports
path: ./reports
- name: Save PR ID or ref
run: |
id="${{ github.event.pull_request.number || github.ref_name}}"
echo $id > ./id.txt
shell: bash
- uses: actions/upload-artifact@v6
with:
name: id
path: ./id.txt
visual_tests:
name: Visual Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install Packages
run: npm ci
- uses: ./.github/actions/setup-playwright
- name: Visual Tests
run: npm run test:visual
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install Packages
run: npm ci
- name: Build
run: npm run build