Skip to content

Commit

Permalink
Fix formatting and update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Oct 2, 2023
1 parent 9c1180c commit a454a6c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/set-up-backend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- name: Install Poetry
shell: bash
run: pipx install poetry==1.5.1
run: pipx install poetry==1.6.1

- name: Set up Python with Poetry cache
uses: actions/setup-python@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up backend
uses: ./.github/actions/set-up-backend
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up frontend
uses: ./.github/actions/set-up-frontend
Expand All @@ -72,7 +72,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up backend
uses: ./.github/actions/set-up-backend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up backend
uses: ./.github/actions/set-up-backend
Expand Down
2 changes: 1 addition & 1 deletion frontend/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.16.0
v18.18.0
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"preview": "vite preview",
"lint": "(tsc -b ; e=$? ; tsc -b --clean; exit $e) && eslint . && prettier --check .",
"test:unit": "jest",
"test:e2e": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://127.0.0.1:4173 -t 1000 && poetry run cypress run",
"cy:open": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://127.0.0.1:4173 -t 1000 && poetry run cypress open",
"test:e2e": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://localhost:4173 -t 1000 && poetry run cypress run",
"cy:open": "wait-on http://127.0.0.1:5050 -t 1000 && wait-on http://localhost:4173 -t 1000 && poetry run cypress open",
"backend": "poetry run python cypress/backend.py"
},
"dependencies": {
Expand Down

0 comments on commit a454a6c

Please sign in to comment.