Skip to content

iframe-playground -> sdk-playground and discord-embedded-app-starter -> discord-activity-starter #86

iframe-playground -> sdk-playground and discord-embedded-app-starter -> discord-activity-starter

iframe-playground -> sdk-playground and discord-embedded-app-starter -> discord-activity-starter #86

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-ci:
name: test-ci
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: install deps
run: pnpm install
- name: build sdk
run: pnpm build
- name: lint
run: pnpm lint
- name: check ts
run: pnpm lint:ts
- name: test
run: pnpm test:all