mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-20 01:46:19 +00:00
Bumps the github-actions-minor group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [step-security/harden-runner](https://github.com/step-security/harden-runner) | `2.17.0` | `2.19.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `6.3.0` | `6.4.0` | | [actions/cache](https://github.com/actions/cache) | `5.0.4` | `5.0.5` | | [KSXGitHub/github-actions-deploy-aur](https://github.com/ksxgithub/github-actions-deploy-aur) | `4.1.2` | `4.1.3` | | [signpath/github-action-submit-signing-request](https://github.com/signpath/github-action-submit-signing-request) | `2.1` | `2.2` | | [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.93` | `1.0.101` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.35.1` | `4.35.2` | | [cloudflare/wrangler-action](https://github.com/cloudflare/wrangler-action) | `3.14.1` | `3.15.0` | Updates `step-security/harden-runner` from 2.17.0 to 2.19.0 - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](f808768d15...8d3c67de8e) Updates `actions/setup-node` from 6.3.0 to 6.4.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](53b83947a5...48b55a011b) Updates `actions/cache` from 5.0.4 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](668228422a...27d5ce7f10) Updates `KSXGitHub/github-actions-deploy-aur` from 4.1.2 to 4.1.3 - [Release notes](https://github.com/ksxgithub/github-actions-deploy-aur/releases) - [Commits](abe8ac26b5...da03e16036) Updates `signpath/github-action-submit-signing-request` from 2.1 to 2.2 - [Release notes](https://github.com/signpath/github-action-submit-signing-request/releases) - [Commits](bc66d86b01...b9d91eadd3) Updates `anthropics/claude-code-action` from 1.0.93 to 1.0.101 - [Release notes](https://github.com/anthropics/claude-code-action/releases) - [Commits](b47fd721da...38ec876110) Updates `github/codeql-action` from 4.35.1 to 4.35.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](c10b8064de...95e58e9a2c) Updates `cloudflare/wrangler-action` from 3.14.1 to 3.15.0 - [Release notes](https://github.com/cloudflare/wrangler-action/releases) - [Changelog](https://github.com/cloudflare/wrangler-action/blob/main/CHANGELOG.md) - [Commits](da0e0dfe58...9acf94ace1) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-minor - dependency-name: actions/setup-node dependency-version: 6.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-minor - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-minor - dependency-name: KSXGitHub/github-actions-deploy-aur dependency-version: 4.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-minor - dependency-name: signpath/github-action-submit-signing-request dependency-version: '2.2' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-minor - dependency-name: anthropics/claude-code-action dependency-version: 1.0.101 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-minor - dependency-name: github/codeql-action dependency-version: 4.35.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-minor - dependency-name: cloudflare/wrangler-action dependency-version: 3.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
235 lines
7.2 KiB
YAML
235 lines
7.2 KiB
YAML
name: 'E2E Tests (Scheduled)'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *' # 2 AM UTC daily
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
branches: [master, release/*]
|
|
paths:
|
|
- 'src/app/imex/sync/**'
|
|
- 'src/app/op-log/**'
|
|
- 'e2e/tests/**'
|
|
- 'docker-compose.yaml'
|
|
- 'docker-compose.supersync.yaml'
|
|
- 'packages/super-sync-server/**'
|
|
- 'packages/shared-schema/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
# Job 0: Build frontend once and share artifact
|
|
build:
|
|
name: Build Frontend
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
env:
|
|
UNSPLASH_KEY: ${{ secrets.UNSPLASH_KEY }}
|
|
UNSPLASH_CLIENT_ID: ${{ secrets.UNSPLASH_CLIENT_ID }}
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup E2E Environment
|
|
uses: ./.github/actions/setup-e2e
|
|
|
|
- run: npm run env
|
|
|
|
- name: Build Frontend for E2E
|
|
run: npm run buildFrontend:e2e
|
|
|
|
- name: Verify Build Output
|
|
run: |
|
|
test -f .tmp/angular-dist/browser/index.html || (echo "Build output missing" && exit 1)
|
|
test -f .tmp/angular-dist/browser/assets/bundled-plugins/api-test-plugin/manifest.json || (echo "Plugin assets missing from build" && exit 1)
|
|
|
|
- name: Upload Build Artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: e2e-build-${{ github.run_id }}
|
|
path: .tmp/angular-dist
|
|
retention-days: 1
|
|
|
|
# Job 1: Regular E2E tests (excludes WebDAV and SuperSync)
|
|
e2e-regular:
|
|
name: E2E Tests (Regular)
|
|
needs: [build]
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
env:
|
|
UNSPLASH_KEY: ${{ secrets.UNSPLASH_KEY }}
|
|
UNSPLASH_CLIENT_ID: ${{ secrets.UNSPLASH_CLIENT_ID }}
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup E2E Environment
|
|
uses: ./.github/actions/setup-e2e
|
|
|
|
- name: Download Build Artifact
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v4
|
|
with:
|
|
name: e2e-build-${{ github.run_id }}
|
|
path: .tmp/angular-dist
|
|
|
|
- name: Run Regular E2E Tests
|
|
run: npm run e2e:ci
|
|
|
|
- name: Upload E2E Results on Failure
|
|
if: ${{ failure() }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: e2e-results-regular-${{ github.run_id }}
|
|
path: .tmp/e2e-test-results/**/*.*
|
|
retention-days: 30
|
|
|
|
# Job 2: WebDAV E2E tests
|
|
e2e-webdav:
|
|
name: E2E Tests (WebDAV)
|
|
needs: [build]
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
env:
|
|
UNSPLASH_KEY: ${{ secrets.UNSPLASH_KEY }}
|
|
UNSPLASH_CLIENT_ID: ${{ secrets.UNSPLASH_CLIENT_ID }}
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup E2E Environment
|
|
uses: ./.github/actions/setup-e2e
|
|
|
|
- name: Download Build Artifact
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v4
|
|
with:
|
|
name: e2e-build-${{ github.run_id }}
|
|
path: .tmp/angular-dist
|
|
|
|
- name: Create .env file for Docker Compose
|
|
run: |
|
|
cp .env.example .env
|
|
|
|
- name: Start WebDAV Docker Service
|
|
run: |
|
|
docker compose up -d webdav
|
|
chmod +x ./scripts/wait-for-webdav.sh
|
|
./scripts/wait-for-webdav.sh
|
|
|
|
- name: Run WebDAV E2E Tests
|
|
run: npm run e2e:all -- --grep "@webdav"
|
|
|
|
- name: Stop Docker Services
|
|
if: always()
|
|
run: |
|
|
docker compose down
|
|
|
|
- name: Print Docker Logs on Failure
|
|
if: ${{ failure() }}
|
|
run: |
|
|
echo "=== WebDAV Logs ==="
|
|
docker compose logs webdav
|
|
|
|
- name: Upload E2E Results on Failure
|
|
if: ${{ failure() }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: e2e-results-webdav-${{ github.run_id }}
|
|
path: .tmp/e2e-test-results/**/*.*
|
|
retention-days: 30
|
|
|
|
# Job 3: SuperSync E2E tests (sharded)
|
|
e2e-supersync:
|
|
name: E2E Tests (SuperSync ${{ matrix.shard }}/4)
|
|
needs: [build]
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 40
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
shard: [1, 2, 3, 4]
|
|
env:
|
|
UNSPLASH_KEY: ${{ secrets.UNSPLASH_KEY }}
|
|
UNSPLASH_CLIENT_ID: ${{ secrets.UNSPLASH_CLIENT_ID }}
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup E2E Environment
|
|
uses: ./.github/actions/setup-e2e
|
|
|
|
- name: Download Build Artifact
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v4
|
|
with:
|
|
name: e2e-build-${{ github.run_id }}
|
|
path: .tmp/angular-dist
|
|
|
|
- name: Create .env file for Docker Compose
|
|
run: |
|
|
cp .env.example .env
|
|
|
|
- name: Start SuperSync Docker Service
|
|
run: |
|
|
docker compose -f docker-compose.yaml -f docker-compose.supersync.yaml up -d --build supersync
|
|
echo "⏳ Waiting for SuperSync server..."
|
|
until curl -s http://localhost:1901/health > /dev/null 2>&1; do sleep 1; done
|
|
echo "✓ SuperSync server ready!"
|
|
|
|
- name: Run SuperSync E2E Tests
|
|
run: npm run e2e:all -- --grep "@supersync" --shard=${{ matrix.shard }}/4
|
|
|
|
- name: Stop Docker Services
|
|
if: always()
|
|
run: |
|
|
docker compose -f docker-compose.yaml -f docker-compose.supersync.yaml down supersync
|
|
|
|
- name: Print Docker Logs on Failure
|
|
if: ${{ failure() }}
|
|
run: |
|
|
echo "=== SuperSync Logs ==="
|
|
docker compose -f docker-compose.yaml -f docker-compose.supersync.yaml logs supersync
|
|
|
|
- name: Upload E2E Results on Failure
|
|
if: ${{ failure() }}
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
with:
|
|
name: e2e-results-supersync-${{ matrix.shard }}-${{ github.run_id }}
|
|
path: .tmp/e2e-test-results/**/*.*
|
|
retention-days: 30
|
|
|
|
# Job 4: SuperSync Server Unit Tests (runs in parallel with build, no artifact needed)
|
|
supersync-server-tests:
|
|
name: SuperSync Server Unit Tests
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
- name: Reconfigure git to use HTTP authentication
|
|
run: >
|
|
git config --global url."https://github.com/".insteadOf
|
|
ssh://git@github.com/
|
|
- name: Install npm Packages
|
|
run: npm i
|
|
- name: Run SuperSync Server Tests
|
|
run: cd packages/super-sync-server && npm test
|