Skip to content

Commit

Permalink
Merge pull request #857 from nextcloud/ci/cypress_stable27
Browse files Browse the repository at this point in the history
ci(cypress): Test against stable27
  • Loading branch information
mejo- authored Sep 4, 2023
2 parents 3999346 + c50760b commit fd23b60
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

strategy:
matrix:
server-versions: ['stable25', 'master']
server-versions: ['stable25', 'stable27', 'master']

steps:
- name: Checkout server
Expand Down Expand Up @@ -99,6 +99,7 @@ jobs:
with:
fallbackNode: '^20'
fallbackNpm: '^9'
path: apps/${{ env.APP_NAME }}

- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
Expand All @@ -109,6 +110,12 @@ jobs:
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"

- name: Install dependencies & build
working-directory: apps/${{ env.APP_NAME }}
run: |
npm ci
npm run build --if-present
- name: Save context
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
Expand All @@ -126,7 +133,7 @@ jobs:
containers: [1, 2, 3, 4]
php-versions: ['8.0']
databases: ['sqlite']
server-versions: ['stable25', 'master']
server-versions: ['stable25', 'stable27', 'master']

steps:
- name: Restore context
Expand Down Expand Up @@ -160,12 +167,6 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}
run: composer i --no-dev

- name: Install dependencies & build
working-directory: apps/${{ env.APP_NAME }}
run: |
npm ci
npm run build --if-present
- name: Set up Nextcloud
env:
DB_PORT: 4444
Expand All @@ -192,7 +193,7 @@ jobs:
- name: Run Nextcloud
run: php -S 0.0.0.0:8081 &

- name: Run Cypress
- name: Cypress run
uses: cypress-io/github-action@v5
with:
record: true
Expand Down

0 comments on commit fd23b60

Please sign in to comment.