Skip to content

chore(deps): bump github/codeql-action from 3.28.10 to 3.28.15 #803

chore(deps): bump github/codeql-action from 3.28.10 to 3.28.15

chore(deps): bump github/codeql-action from 3.28.10 to 3.28.15 #803

Workflow file for this run

name: LPS E2E test
on:
push:
branches: [ QA-Test, Stable-Test, master ]
pull_request:
branches: [ QA-Test, Stable-Test, master ]
permissions: read-all
jobs:
e2e-test:
name: Server initialization and health check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version-file: 'go.mod'
- name: Update env file
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: cd docker-compose/local/ && ./gh-action-env.sh $GITHUB_TOKEN
- name: Building LPS environment...
run: cd docker-compose/local/ && LPS_STAGE=regtest sh lps-env.sh up
- name: Checking LPS health...
run: curl -X GET http://localhost:8080/health
- name: Shutting LPS environment down...
run: cd docker-compose/local/ && LPS_STAGE=regtest sh lps-env.sh down