Nightly build #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly build | |
on: | |
schedule: | |
- cron: '0 0 * * 1-6' | |
workflow_dispatch: | |
inputs: {} | |
permissions: | |
contents: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test-e2e: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Chrome | |
project: chrome | |
target: chrome | |
runs-on: ubuntu-22.04 | |
- name: Edge | |
project: msedge | |
target: chrome | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
name: E2E Tests - ${{ matrix.name }} | |
runs-on: ${{ matrix.runs-on }} | |
environment: test | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Environment setup | |
uses: ./.github/actions/setup | |
- name: Build | |
run: pnpm build ${{ matrix.target }} --channel=nightly | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Run Playwright tests | |
run: pnpm test:e2e:${{ matrix.project }} | |
env: | |
PLAYWRIGHT_PROJECT: ${{ matrix.project }} | |
PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS: '1' | |
TEST_WALLET_ORIGIN: ${{ vars.E2E_WALLET_URL_ORIGIN }} | |
TEST_WALLET_USERNAME: ${{ vars.E2E_WALLET_USERNAME }} | |
TEST_WALLET_PASSWORD: ${{ secrets.E2E_WALLET_PASSWORD }} | |
TEST_WALLET_ADDRESS_URL: ${{ vars.E2E_CONNECT_WALLET_ADDRESS_URL }} | |
TEST_WALLET_KEY_ID: ${{ vars.E2E_CONNECT_KEY_ID }} | |
TEST_WALLET_PUBLIC_KEY: ${{ secrets.E2E_CONNECT_PUBLIC_KEY }} | |
TEST_WALLET_PRIVATE_KEY: ${{ secrets.E2E_CONNECT_PRIVATE_KEY }} | |
FYNBOS_WALLET_ADDRESS_URL: ${{ vars.E2E_FYNBOS_WALLET_ADDRESS_URL }} | |
FYNBOS_USERNAME: ${{ vars.E2E_FYNBOS_USERNAME }} | |
FYNBOS_PASSWORD: ${{ secrets.E2E_FYNBOS_PASSWORD }} | |
- name: Encrypt report | |
shell: bash | |
working-directory: tests/e2e/playwright-report | |
run: | | |
zip -r -P ${{ secrets.E2E_PLAYWRIGHT_REPORT_PASSWORD }} ../playwright-report.zip * | |
- name: Upload report | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report-${{ matrix.project }} | |
path: tests/e2e/playwright-report.zip | |
retention-days: 3 | |
build-nightly: | |
name: Create Release | |
runs-on: ubuntu-24.04 | |
needs: test-e2e | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Environment setup | |
uses: ./.github/actions/setup | |
- name: Build | |
run: pnpm build --channel=nightly | |
- name: Get built version | |
uses: actions/github-script@v7 | |
id: version | |
with: | |
script: | | |
const script = require('./.github/actions/get-built-version.cjs') | |
await script({ github, context, core }) | |
- name: Delete existing release | |
run: gh release delete nightly --cleanup-tag --yes | |
continue-on-error: true | |
env: | |
GH_TOKEN: ${{ github.token }} | |
- name: Create GH Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
dist/*.zip | |
tag_name: 'nightly' | |
name: Nightly ${{ steps.version.outputs.version }} | |
body: | | |
> [!warning] | |
> The Nightly build is for adventurous folks. It's updated daily with less-tested features and improvements. | |
prerelease: true | |
- name: Ensure release is published | |
run: gh release edit nightly --draft=false | |
env: | |
GH_TOKEN: ${{ github.token }} |