Skip to content

Commit

Permalink
Merge branch 'main' into bugfix/supress-js-client-richtext-deprecatio…
Browse files Browse the repository at this point in the history
…n-warning
  • Loading branch information
alvarosabu committed Sep 20, 2024
2 parents b8e9d48 + e670732 commit 8e8bb90
Show file tree
Hide file tree
Showing 6 changed files with 11,985 additions and 16,728 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,30 @@ on:
pull_request:
branches: [main, next]

env:
PNPM_CACHE_FOLDER: .pnpm-store
HUSKY: 0 # Bypass husky commit hook for CI


jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
node-version: 20
cache: pnpm
- name: Install dependencies
run: npm ci && cd playground && npm ci && cd ..
run: pnpm install
- name: Build lib
run: npm run build
run: pnpm run build
- name: Cypress run
run: npm run test:e2e
run: pnpm run test:e2e
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading

0 comments on commit 8e8bb90

Please sign in to comment.