Bump github.com/klauspost/compress from 1.17.11 to 1.18.0 #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |