-
-
Notifications
You must be signed in to change notification settings - Fork 11
122 lines (104 loc) · 2.78 KB
/
connect.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: 🔌 Test & Deploy Hyper Connect
on:
pull_request:
branches:
- main
paths:
- "packages/connect/**"
push:
branches:
- main
paths:
- "packages/connect/**"
tags:
- 'hyper-connect@*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: [1.x]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: ⚡ Run Tests
run: |
cd packages/connect
deno task test
env:
CI: true
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
deno-version: [1.x]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: ⚡ Run Tests
run: |
cd packages/connect
yarn
deno task test
deno task test:integration
env:
CI: true
HYPER: ${{ secrets.CONNECT_INTEGRATION_HYPER }}
publish-egg:
if: startsWith(github.ref, 'refs/tags/hyper-connect@')
needs: [test, test-node]
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# - name: 🥚 Setup Eggs CLI
# run: |
# deno install -A -f --unstable --no-check https://x.nest.land/[email protected]/eggs.ts
# export PATH="/home/runner/.deno/bin:$PATH"
# eggs link ${{ secrets.NESTAPIKEY }}
# - name: 📘 Publish to Nest
# run: |
# cd packages/port-cache
# eggs publish --yes
publish-npm:
if: startsWith(github.ref, 'refs/tags/hyper-connect@')
needs: [test, test-node]
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3
- name: 🦕 Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.x
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: "https://registry.npmjs.org"
- name: 🦠 Publish to NPM
run: |
cd packages/connect
yarn
deno task to-node
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}