Update dependencies and fix docs (#2186)

* chore: Update chardet package to version 5.2.0

* chore: Update Docker build workflow to support multiple platforms and add container testing

* chore: Update pre-release workflow to include CLI testing

* chore: Update npm install command in lint-js.yml workflow

* chore: Update eslint and prettier versions in package.json

* fix: remove .mdx from link in docs

* Merge remote-tracking branch 'origin/dev' into update
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-06-15 06:37:34 -07:00 committed by GitHub
commit dfc008b383
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 210 additions and 334 deletions

View file

@ -35,7 +35,7 @@ jobs:
- name: Install Node.js dependencies
run: |
cd src/frontend
npm ci
npm install
if: ${{ steps.setup-node.outputs.cache-hit != 'true' }}
- name: Run linters
@ -45,7 +45,9 @@ jobs:
auto_fix: true
git_email: "gabriel@langflow.org"
# Enable linters
eslint: true
# eslint: true
# eslint_auto_fix: true
prettier: true
prettier_auto_fix: true
prettier_args: '--write \"{tests,src}/**/*.{js,jsx,ts,tsx,json,md}\" --ignore-path .prettierignore'