Skip to content

feat: route all update calls to synchronous v3 endpoint (#595) #573

feat: route all update calls to synchronous v3 endpoint (#595)

feat: route all update calls to synchronous v3 endpoint (#595) #573

Workflow file for this run

name: Check shell scripts
on:
pull_request:
types:
- opened
- reopened
- synchronize
paths:
- 'e2e/**'
- '.github/**'
push:
branches:
- main
jobs:
check_macos:
# ubuntu-latest has shellcheck 0.4.6, while macos-12 has 0.7.1
runs-on: macos-12
steps:
- uses: actions/checkout@v4
- name: Install shellcheck
run: |
mkdir $HOME/bin
cd $HOME/bin
curl -L https://github.com/koalaman/shellcheck/releases/download/v0.7.1/shellcheck-v0.7.1.darwin.x86_64.tar.xz \
| xz -d | tar x
- name: Check e2e scripts
run: $HOME/bin/shellcheck-v0.7.1/shellcheck e2e/bash/*.bash e2e/bash/util/*.bash
- name: Check workflow scripts
run: $HOME/bin/shellcheck-v0.7.1/shellcheck .github/workflows/*.sh