Skip to content

Commit

Permalink
Adding in the actions and running on GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
eHag-FRU committed Apr 8, 2024
1 parent 966ee7f commit dfeb160
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test404.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test Suite

on:
push:
branches: [ "main","dev","GHA-Test-404" ]
branches: [ "main","dev","Selenium-GHA" ]
pull_request:
branches: [ "main","dev" ]

Expand All @@ -17,10 +17,10 @@ jobs:
echo "$ ls"
ls
echo "$ apt update"
apt update
sudo apt update
echo "$ apt install python3 -y"
apt install python3 -y
sudo apt install python3 -y
echo "$ python3 -V"
python3 -V
Expand All @@ -30,7 +30,7 @@ jobs:
python3 -m http.server --bind 127.0.0.1 &
- name: Install Chrome Shared Libraries
run: |
apt-get update && apt-get install -y \
sudo apt-get update && sudo apt-get install -y \
ca-certificates \
fonts-liberation \
libasound2 \
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testMainMenu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
echo "$ ls"
ls
echo "$ apt update"
apt update
sudo apt update
echo "$ apt install python3 -y"
apt install python3 -y
sudo apt install python3 -y
echo "$ python3 -V"
python3 -V
Expand All @@ -30,7 +30,7 @@ jobs:
python3 -m http.server --bind 127.0.0.1 &
- name: Install Chrome Shared Libraries
run: |
apt-get update && apt-get install -y \
sudo apt-get update && sudo apt-get install -y \
ca-certificates \
fonts-liberation \
libasound2 \
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/testPauseMenu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Test Suite

on:
push:
branches: [ "main","dev","GHA-Test-404" ]
branches: [ "main","dev","Selenium-GHA" ]
pull_request:
branches: [ "main","dev" ]

jobs:
Test-404:
Test-PauseMenu:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -17,10 +17,10 @@ jobs:
echo "$ ls"
ls
echo "$ apt update"
apt update
sudo apt update
echo "$ apt install python3 -y"
apt install python3 -y
sudo apt install python3 -y
echo "$ python3 -V"
python3 -V
Expand All @@ -30,7 +30,7 @@ jobs:
python3 -m http.server --bind 127.0.0.1 &
- name: Install Chrome Shared Libraries
run: |
apt-get update && apt-get install -y \
sudo apt-get update && sudo apt-get install -y \
ca-certificates \
fonts-liberation \
libasound2 \
Expand Down Expand Up @@ -76,4 +76,4 @@ jobs:

- name: Run browser tests
run: npm run test:pauseMenu

0 comments on commit dfeb160

Please sign in to comment.