forked from botpress/botpress
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 919 Bytes
/
Copy pathrun-chat-tests.yml
File metadata and controls
32 lines (29 loc) · 919 Bytes
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
name: Run Chat Tests
on: pull_request
permissions:
id-token: write
contents: read
jobs:
run-chat-tests:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
NODE_OPTIONS: '--max_old_space_size=8192'
steps:
- uses: actions/checkout@v2
- name: Setup
uses: ./.github/actions/setup
with:
extra_filters: '-F @botpresshub/chat -F @bp-bots/echo -F @botpress/chat'
- name: Install tilt
run: curl -k -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash
- name: Run Tilt
env:
BP_TOKEN: ${{ secrets.STAGING_TOKEN_CLOUD_OPS_ACCOUNT }}
run: |
tilt ci -f ./echo.Tiltfile -- \
--skip-install \
--skip-build \
--bp-domain 'botpress.dev' \
--bp-workspace-id '95de33eb-1551-4af9-9088-e5dcb02efd09' \
--bp-token "$BP_TOKEN"