mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-16 07:05:52 +00:00
b286ef2a74
* chore: Add changeset status step to CI workflow * f * f * f * Update ci.yml * Update ci.yml * Update ci.yml
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
workflow_call:
|
|
|
|
env:
|
|
NEXT_PUBLIC_GHOST_API_URL: ''
|
|
NEXT_PUBLIC_GHOST_API_KEY: ''
|
|
INFURA_API_KEY: ''
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and Test
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# https://github.com/changesets/changesets/issues/1055
|
|
fetch-depth: 0
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 9.12.3
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.18.0
|
|
cache: 'pnpm'
|
|
|
|
- name: Changeset
|
|
# https://github.com/changesets/changesets/issues/1048
|
|
run: pnpm dlx @changesets/cli status --since origin/main
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
- name: Typecheck
|
|
run: pnpm typecheck
|
|
|
|
- name: Lint
|
|
run: pnpm lint && pnpm format --check
|
|
|
|
- name: Test
|
|
run: pnpm test
|