Skip to content

GO-4222 Feature Primitives #38

GO-4222 Feature Primitives

GO-4222 Feature Primitives #38

Workflow file for this run

name: Smoke Tests
on:
pull_request:
branches:
- main
jobs:
smoke-test:
name: Run Smoke Tests
runs-on: ubuntu-latest
timeout-minutes: 30
continue-on-error: true
steps:
- name: Checkout Test Repository
run: git clone --depth=1 https://github.com/anyproto/anytype-test.git .
- name: Create config.yml file from secret
run: echo "${{ secrets.ANY_SYNC_NETWORK_STAGE1 }}" > config.yml
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.2'
- name: Clone anytype-heart with specified branch
uses: actions/checkout@v4
with:
path: mw/anytype-heart
- name: Setup anytype-heart
run: cd mw/anytype-heart && make setup
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: './package-lock.json'
- name: Install dependencies
run: npm install
- name: Run smoke tests
run: npm run test:smoke:testomatio
env:
TESTOMATIO: ${{ secrets.TESTOMATIO }}
GH_PAT: ${{ github.token }}