Skip to content

Commit

Permalink
more ci fixes, update frontend deps and explicitly add axios
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Aug 23, 2024
1 parent c550645 commit 5500335
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 60 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: frontend/package-lock.json
cache-dependency-path: frontend/pnpm-lock.json
- run: pnpm install
- run: pnpm run lint
- run: pnpm run build
Expand All @@ -51,7 +51,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .[tests]
- run: python -m pytest --cov=predicTCR_server
- run: python -m pytest -sv
docker:
runs-on: ubuntu-latest
name: "Docker"
Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "predicTCR backend"
readme = "README.md"
maintainers = [{ name = "Liam Keegan", email = "[email protected]" }]
dynamic = ["version"]
requires-python = ">=3.12"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
Expand Down
53 changes: 27 additions & 26 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,38 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path ../.gitignore"
},
"dependencies": {
"bootstrap-icons": "^1.10.2",
"jsbarcode": "^3.11.5",
"pinia": "^2.0.21",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
"axios": "^1.7.4",
"bootstrap-icons": "^1.11.3",
"jsbarcode": "^3.11.6",
"pinia": "^2.2.2",
"vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@rushstack/eslint-patch": "^1.1.4",
"@cypress/code-coverage": "^3.12.45",
"@rushstack/eslint-patch": "^1.10.4",
"@testing-library/vue": "^6.6.1",
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.56",
"@vitejs/plugin-vue": "^3.0.3",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vitest/coverage-c8": "^0.25.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@types/jsdom": "^20.0.1",
"@types/node": "^16.18.105",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vitest/coverage-c8": "^0.25.8",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.1.3",
"cypress": "^10.7.0",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.0",
"cypress": "^10.11.0",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-vue": "^9.27.0",
"jsdom": "^20.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"prettier": "^2.8.8",
"start-server-and-test": "^1.15.4",
"typescript": "~4.7.4",
"vite": "^3.0.9",
"vite-plugin-istanbul": "^3.0.2",
"vitest": "^0.23.0",
"vue-tsc": "^0.40.7"
"vite": "^3.2.10",
"vite-plugin-istanbul": "^3.0.4",
"vitest": "^0.23.4",
"vue-tsc": "^0.40.13"
}
}
86 changes: 55 additions & 31 deletions frontend/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5500335

Please sign in to comment.