We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I should probably add basic documentation of how to run SafeQL in CI
The text was updated successfully, but these errors were encountered:
We have it running in GitHub Actions like this:
https://github.com/upleveled/security-vulnerability-examples-next-js-postgres/blob/8d0e4af69fb97c2e482f6c8fb183c58d8dd20cd7/.github/workflows/lint-check-types-build.yml
Sorry, something went wrong.
Interesting... I'm using the following service for the CI in the project:
jobs: check: runs-on: ubuntu-latest services: postgres: image: postgres:14 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: postgres ports: - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
I'm not sure what's the better approach here.
Seems like your approach offers a bit more configurability, but may be a bit slower to start.
No branches or pull requests
I should probably add basic documentation of how to run SafeQL in CI
The text was updated successfully, but these errors were encountered: