-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: added eslint job to test if it all works
- Loading branch information
1 parent
a4ead88
commit 5f6678e
Showing
4 changed files
with
36 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: "Setup Backend Dependencies" | ||
description: "Sets up the backend dependencies required for the testing containers." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up python 3.12 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.12" | ||
- name: Install dependencies | ||
run: pip install -r ./backend/requirements.txt | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: "Setup Frontend Dependencies" | ||
description: "Sets up the frontend dependencies required for the testing containers." | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up node LTS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "lts" | ||
- name: Install dependencies | ||
run: npm ci | ||
shell: bash | ||
working-directory: ./frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters