Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix language detection and update libs #1

Merged
merged 10 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache: "npm"
cache-dependency-path: client/package.lock.json
- name: Install Dependencies
run: |
cd client && npm ci
cd client && npm install
- name: Lint
run: |
cd client && npm run lint
- name: Run Tests
run: |
cd client && npm test --coverage
cd client && npm run test --coverage
- name: Upload coverage
uses: codecov/codecov-action@v1
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"**/.venv": true,
"**/node_modules": true,
"**/mypy_cache": true,
"**/yarn.lock": true,
"**/package-lock.json": true,
"**/poetry.lock": true,
}
Expand Down
2 changes: 0 additions & 2 deletions client/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
28 changes: 14 additions & 14 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,42 +7,42 @@
<link rel="icon"
type="image/x-icon"
sizes="16x16 32x32"
href="/icons/favicon.ico"/>
href="/icons/favicon.ico" />
<!-- For iPad with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon"
sizes="152x152"
href="/icons/favicon-152-precomposed.png"/>
href="/icons/favicon-152-precomposed.png" />
<!-- For iPad with high-resolution Retina display running iOS ≤ 6: -->
<link rel="apple-touch-icon"
sizes="144x144"
href="/icons/favicon-144-precomposed.png"/>
href="/icons/favicon-144-precomposed.png" />
<!-- For iPhone with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon"
sizes="120x120"
href="/icons/favicon-120-precomposed.png"/>
href="/icons/favicon-120-precomposed.png" />
<!-- For iPhone with high-resolution Retina display running iOS ≤ 6: -->
<link rel="apple-touch-icon"
sizes="114x114"
href="/icons/favicon-114-precomposed.png"/>
href="/icons/favicon-114-precomposed.png" />
<!-- For iPhone 6+ -->
<link rel="apple-touch-icon"
sizes="180x180"
href="/icons/favicon-180-precomposed.png"/>
href="/icons/favicon-180-precomposed.png" />
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon"
sizes="72x72"
href="/icons/favicon-72-precomposed.png"/>
href="/icons/favicon-72-precomposed.png" />
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon" sizes="57x57" href="/icons/favicon-57.png"/>
<link rel="apple-touch-icon" sizes="57x57" href="/icons/favicon-57.png" />
<!-- For Old Chrome -->
<link rel="icon" sizes="32x32" href="/icons/favicon-32.png"/>
<link rel="icon" sizes="32x32" href="/icons/favicon-32.png" />
<!-- For IE10 Metro -->
<meta name="msapplication-TileColor" content="#FFFFFF"/>
<meta name="msapplication-TileImage" content="/icons/favicon-144.png"/>
<meta name="theme-color" content="#ffffff"/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="/icons/favicon-144.png" />
<meta name="theme-color" content="#ffffff" />
<!-- Chrome for Android -->
<link rel="manifest" href="manifest.json"/>
<link rel="icon" sizes="192x192" href="/icons/favicon-192.png"/>
<link rel="manifest" href="manifest.json" />
<link rel="icon" sizes="192x192" href="/icons/favicon-192.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Web site created using create-react-app" />
Expand Down
Loading
Loading