Skip to content

fix: profile password change now works and is verified (#99) #300

fix: profile password change now works and is verified (#99)

fix: profile password change now works and is verified (#99) #300

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * 1'
permissions:
contents: read
security-events: write
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
strategy:
matrix:
language: [go, javascript-typescript]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- if: matrix.language == 'go'
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version: "1.26"
- if: matrix.language == 'go'
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: "20"
- if: matrix.language == 'go'
run: cd ui && npm ci && npm run build && cd ..
- uses: github/codeql-action/init@480db559a14342288b67e54bd959dd52dc3ee68f # v3
with:
languages: ${{ matrix.language }}
- if: matrix.language == 'go'
run: go build ./...
- uses: github/codeql-action/analyze@480db559a14342288b67e54bd959dd52dc3ee68f # v3