Skip to content

Commit

Permalink
Changing file permissions for install.
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinsingla committed Feb 21, 2024
1 parent c97164e commit 5747310
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Set file/directory permissions
run: |
chmod 777 trust uploads modules templates_c cache mainfile.php
- name: Run Docker Compose
run: |
docker-compose up -d
Expand All @@ -23,20 +26,18 @@ jobs:
host: localhost
port: 3306
timeout: 60
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
# - name: Install dependencies
# run: npm ci
# working-directory: ci
# - name: Install Playwright Browsers
# run: npx playwright install --with-deps
# working-directory: ci
# - name: Run Playwright tests
# run: npx playwright test
# working-directory: ci
# - uses: actions/upload-artifact@v3
# if: always()
# with:
# name: playwright-report
# path: playwright-report/
# retention-days: 30
- name: Install dependencies
run: npm ci
working-directory: ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
working-directory: ci
- name: Run Playwright tests
run: npx playwright test
working-directory: ci
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30

0 comments on commit 5747310

Please sign in to comment.