Skip to content

Planned integration tests #9

Planned integration tests

Planned integration tests #9

name: Planned integration tests
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 0'
jobs:
tests:
runs-on: ubuntu-latest
concurrency:
group: web_integration_tests
cancel-in-progress: true
steps:
- uses: actions/checkout@v6
- name: Set Aegis url
run: |
fastlane setAegisUrl url:${{ secrets.AEGIS_URL }}
- name: Set Stripe secrets
run: |
fastlane updateStripeSecrets product_id:${{ vars.STRIPE_PRODUCT_ID }} subscription_id:${{ vars.STRIPE_SUBSCRIPTION_ID }}
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
- name: Enable Corepack
run: corepack enable
- name: Cache pnpm store
id: cache-pnpm-store
uses: actions/cache@v5
with:
path: ~/.local/share/pnpm/store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Tests
run: |
pnpm integrationTests