Skip to content

chore(deps): bump @tanstack/react-query from 5.62.8 to 5.62.14 in /client #175

chore(deps): bump @tanstack/react-query from 5.62.8 to 5.62.14 in /client

chore(deps): bump @tanstack/react-query from 5.62.8 to 5.62.14 in /client #175

Workflow file for this run

name: Go Test Workflow
on:
pull_request:
branches:
- main
jobs:
test:
name: Run Go Tests
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Check Go Version
run: go version
- name: Run tests
env:
SUPABASE_URI: ${{ secrets.SUPABASE_URI }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ENV: ${{ secrets.ENV }}
CLIENT_URL: ${{ secrets.CLIENT_URL }}
EMAIL: ${{ secrets.EMAIL }}
EMAIL_APP_PASSWORD: ${{ secrets.EMAIL_APP_PASSWORD }}
TEST_EMAIL: ${{ secrets.TEST_EMAIL }}
run: go test ./... -v