Skip to content

HS-1258249: fix uncatchable realtime 1008 error and endless 1-second reconnect loop #205

HS-1258249: fix uncatchable realtime 1008 error and endless 1-second reconnect loop

HS-1258249: fix uncatchable realtime 1008 error and endless 1-second reconnect loop #205

Workflow file for this run

name: Format and push
# Github action will require permission to write to repo
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: true
ref: ${{ github.event.pull_request.head.ref }}
- name: Install Flutter
uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 # v2.23.0
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Format Dart code
run: dart format .
- name: git config
run: git config --global --add safe.directory /__w/sdk-for-flutter/sdk-for-flutter # required to fix dubious ownership
- name: Add & Commit
uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 # v10.0.0
with:
add: '["lib", "test"]'