Skip to content

Commit 2397ff0

Browse files
authored
chore: preview release workflow (#515)
* chore: preview release workflow * chore: fix base repo owner check * chore: add badge on readme
1 parent ba084f8 commit 2397ff0

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/workflows/preview-release.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Preview release
2+
3+
permissions:
4+
pull-requests: write
5+
6+
on:
7+
push:
8+
branches:
9+
- master
10+
pull_request:
11+
types: [opened, synchronize, labeled]
12+
13+
jobs:
14+
preview:
15+
if: >
16+
github.repository == 'supabase/realtime-js' &&
17+
(github.event_name == 'push' ||
18+
(github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'trigger: preview')))
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: '20'
28+
cache: 'npm'
29+
30+
- name: Install dependencies
31+
run: npm ci
32+
33+
- name: Build
34+
run: npm run build
35+
36+
- run: npx pkg-pr-new@latest publish --compact

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
</p>
2222
</p>
2323

24+
<div align="center">
25+
26+
[![pkg.pr.new](https://pkg.pr.new/badge/supabase/realtime-js)](https://pkg.pr.new/~/supabase/realtime-js)
27+
28+
</div>
29+
2430
# Overview
2531

2632
This client enables you to use the following Supabase Realtime's features:

0 commit comments

Comments
 (0)