Skip to content

chore(deps-dev): bump @types/node from 22.10.7 to 22.10.10 in /client #239

chore(deps-dev): bump @types/node from 22.10.7 to 22.10.10 in /client

chore(deps-dev): bump @types/node from 22.10.7 to 22.10.10 in /client #239

Workflow file for this run

name: Backend Test
on:
pull_request:
branches:
- develop
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: ${{ vars.ENV }}
EMAIL: ${{ secrets.EMAIL }}
EMAIL_APP_PASSWORD: ${{ secrets.EMAIL_APP_PASSWORD }}
TEST_EMAIL: ${{ vars.TEST_EMAIL }}
run: go test ./... -v