Skip to content

add changelog for official release #1043

add changelog for official release

add changelog for official release #1043

Workflow file for this run

name: Continuous Integration
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 2
show-progress: false
- name: Runner setup
uses: ./.github/actions/runner-setup
- name: Build & Test
run: pnpm turbo build test
e2e:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 2
show-progress: false
- name: Runner setup
uses: ./.github/actions/runner-setup
- name: Setup Kadena sandbox
uses: ./.github/actions/sandbox
- name: Install browser
run: pnpm --filter spirekey run install:chromium
- name: End-to-end test
run: pnpm test:e2e
- name: Publish Report
uses: ./.github/actions/publish-report
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPORT_DIR: 'spirekey/playwright-report/'