Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated artifacts versions [master] #188

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ name: CI for Login with google plugin test
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
# push:
# branches:
# - develop
# - master
# pull_request:
# branches:
# - develop
# - master

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Archive HTML Report on failure
if: failure()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: report
path: ./tests/e2e-playwright/uploads
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/phpunit_on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
on: pull_request
on:
# pull_request
workflow_dispatch:
name: PHPUnit
jobs:
unit: #-----------------------------------------------------------------------
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
run: composer update && composer tests:unit

- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: /tmp/report/html
Expand All @@ -71,7 +73,7 @@ jobs:
token: ${{ secrets.RTBOT_TOKEN }}

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: code-coverage-report
path: /tmp/report/html
Expand Down
Loading