Skip to content

ci: test to debug Secret is required #99

ci: test to debug Secret is required

ci: test to debug Secret is required #99

Workflow file for this run

name: ci
permissions: {}
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
merge_group: {}
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
- name: 🧪 Test project
run: pnpm -r test
env:
ALICE_APP_PASSWORD: ${{ secrets.ALICE_PASSWORD }}
BOB_APP_PASSWORD: ${{ secrets.BOB_PASSWORD }}
timeout-minutes: 10
- name: 📝 Lint
run: pnpm run lint
- name: 📝 Check format
run: pnpm run format
- name: 💪 Type check
run: pnpm -r test:typecheck
- name: 📦 Build
run: pnpm -r build
# - name: 🚢 Continuous Release
# run: pnpm dlx pkg-pr-new publish './packages/core'
# if: github.event_name == 'pull_request'