Skip to content

fix: correct key names in Spanish localization for notebook tour #4011

fix: correct key names in Spanish localization for notebook tour

fix: correct key names in Spanish localization for notebook tour #4011

Workflow file for this run

name: Pre-commit checks
on:
push
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: 'Check out repository code'
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'yarn'
cache-dependency-path: DashAI/front/yarn.lock
- name: Install frontend deps
working-directory: DashAI/front
run: yarn install --frozen-lockfile
- name: Setup latest Python 3.x
uses: actions/setup-python@v3
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Cache pre-commit
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit
run: pre-commit run --all-files