Skip to content

Commit

Permalink
fix workflows (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsaridas authored Oct 8, 2024
1 parent 88b45a2 commit 0a7f36d
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions .github/workflows/publish-hub-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
for image in /tmp/images/*.tar; do
docker load -i $image
done
- name: Run Docker Container and Test (1st run)
run: |
platform=${{ matrix.platform }}
Expand Down Expand Up @@ -106,23 +106,6 @@ jobs:
docker stop $(docker ps -a | grep stremio | awk '{print $1}')
docker rm $(docker ps -a | grep stremio | awk '{print $1}')
- uses: actions/setup-node@v3
with:
node-version: 18

- name: Install Playwright
run: npm install @playwright/test

- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Run Playwright tests
run: cd tests;npx playwright test || (
docker ps;
docker logs $(docker ps | grep stremio | awk '{print $1}');
exit 1;
)

- name: Upload image
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 0a7f36d

Please sign in to comment.