Skip to content

Commit

Permalink
chore: add example values for envs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbrusegard committed Sep 20, 2024
1 parent 196759c commit 88192ca
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Code Quality

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

Expand All @@ -21,6 +23,25 @@ jobs:
performance-audit:
name: Performance Audit
runs-on: ubuntu-latest
env:
NEXT_TELEMETRY_DISABLED: true
NODE_ENV: "production"
NEXT_PUBLIC_SITE_URL: "http://localhost:3000"
DATABASE_HOST: "localhost"
DATABASE_PORT: "5432"
DATABASE_USER: "user"
DATABASE_PASSWORD: "password"
DATABASE_NAME: "database"
STORAGE_HOST: "localhost"
STORAGE_PORT: "9000"
STORAGE_USER: "user"
STORAGE_PASSWORD: "password"
STORAGE_NAME: "images"
FEIDE_CLIENT_ID: " "
FEIDE_CLIENT_SECRET: " "
FEIDE_AUTHORIZATION_ENDPOINT: "https://auth.dataporten.no/oauth/authorization"
FEIDE_TOKEN_ENDPOINT: "https://auth.dataporten.no/oauth/token"
FEIDE_USERINFO_ENDPOINT: "https://auth.dataporten.no/openid/userinfo"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 88192ca

Please sign in to comment.