Sanitize ldap strings, graceful activity log restart (1.6) #712
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| - "release/**" | |
| paths-ignore: | |
| - "*.md" | |
| - "LICENSE" | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| - "release/**" | |
| paths-ignore: | |
| - "*.md" | |
| - "LICENSE" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-web: | |
| runs-on: | |
| - codebuild-defguard-core-runner-${{ github.run_id }}-${{ github.run_attempt }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: install deps | |
| working-directory: ./web | |
| run: | | |
| npm i -g npm pnpm | |
| pnpm i --frozen-lockfile | |
| - name: Run tests | |
| working-directory: ./web | |
| run: pnpm run test |