Skip to content

feat(i18n): allow menu items to use an i18n key #6755

feat(i18n): allow menu items to use an i18n key

feat(i18n): allow menu items to use an i18n key #6755

Workflow file for this run

name: Dependency check
on:
push:
jobs:
depCheck:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-${{ env.cache-name }}-
${{ runner.os }}-modules-
${{ runner.os }}-
- name: Install project dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Check for unused/missing dependencies
id: depcheck
run: yarn depcheck
env:
NODE_OPTIONS: --max_old_space_size=8192