-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 204c5db
Showing
128 changed files
with
13,785 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "Next.js", | ||
"image": "ghcr.io/acdh-oeaw/devcontainer-frontend:22", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"bradlc.vscode-tailwindcss", | ||
"dbaeumer.vscode-eslint", | ||
"editorconfig.editorconfig", | ||
"esbenp.prettier-vscode", | ||
"lokalise.i18n-ally", | ||
"mikestead.dotenv", | ||
"ms-playwright.playwright", | ||
"stylelint.vscode-stylelint" | ||
] | ||
} | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
## .gitignore ## | ||
|
||
# dependencies | ||
node_modules/ | ||
.pnpm-store/ | ||
|
||
# logs | ||
*.log | ||
|
||
# non-public environment variables | ||
.env.keys | ||
.env.local | ||
.env.*.local | ||
|
||
# caches | ||
.eslintcache | ||
.prettiercache | ||
.stylelintcache | ||
*.tsbuildinfo | ||
|
||
# vercel | ||
.vercel | ||
|
||
# misc | ||
.DS_Store | ||
.idea/ | ||
|
||
# next.js | ||
.next/ | ||
next-env.d.ts | ||
out/ | ||
|
||
# test | ||
/coverage/ | ||
|
||
# playwright | ||
/blob-report/ | ||
/playwright/.cache/ | ||
/playwright-report/ | ||
/test-results/ | ||
|
||
|
||
## .dockerignore ## | ||
|
||
# git | ||
.git/ | ||
.gitattributes | ||
.gitignore | ||
|
||
# github | ||
.github/ | ||
|
||
# vscode settings | ||
.vscode/ | ||
|
||
# environment variables | ||
.env | ||
.env.* | ||
|
||
# tests | ||
playwright.config.ts | ||
/e2e/ | ||
/test/ | ||
|
||
# misc | ||
.editorconfig |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = tab | ||
insert_final_newline = true | ||
max_line_length = 100 | ||
trim_trailing_whitespace = true | ||
|
||
[*.{yaml,yml}] | ||
indent_style = space |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# ------------------------------------------------------------------------------------------------- | ||
# environment variables | ||
# ------------------------------------------------------------------------------------------------- | ||
# - public environment variables must be prefixed with `NEXT_PUBLIC_`. | ||
# - when adding new environment variables, don't forget to also update the | ||
# validation schema in `./config/env.config.js`. | ||
|
||
# ------------------------------------------------------------------------------------------------- | ||
# app | ||
# ------------------------------------------------------------------------------------------------- | ||
NEXT_PUBLIC_APP_BASE_URL="http://localhost:3000" | ||
# imprint service | ||
NEXT_PUBLIC_REDMINE_ID= | ||
# web crawlers | ||
NEXT_PUBLIC_BOTS="disabled" | ||
# validate environment variables | ||
ENV_VALIDATION="enabled" | ||
|
||
# ------------------------------------------------------------------------------------------------- | ||
# analytics | ||
# ------------------------------------------------------------------------------------------------- | ||
# NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION= | ||
NEXT_PUBLIC_MATOMO_BASE_URL="https://matomo.acdh.oeaw.ac.at" | ||
# NEXT_PUBLIC_MATOMO_ID= |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
name: Build and deploy | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.ref }}-build-deploy" | ||
cancel-in-progress: true | ||
|
||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
env: | ||
name: Generate environment variables | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Derive environment from git ref | ||
id: environment | ||
run: | | ||
if [ "${{ github.ref }}" = "refs/heads/main" ]; then | ||
ENVIRONMENT="production" | ||
APP_NAME_SUFFIX="" | ||
elif [ "${{ github.ref }}" = "refs/heads/develop" ]; then | ||
ENVIRONMENT="development" | ||
APP_NAME_SUFFIX="-development" | ||
elif [ "${{github.event_name}}" = "pull_request"]; then | ||
ENVIRONMENT="pr/${{ github.event.pull_request.number }}" | ||
APP_NAME_SUFFIX="-pr-${{ github.event.pull_request.number }}" | ||
else | ||
exit 1 | ||
fi | ||
echo "ENVIRONMENT=$ENVIRONMENT" >> $GITHUB_OUTPUT | ||
echo "APP_NAME_SUFFIX=$APP_NAME_SUFFIX" >> $GITHUB_OUTPUT | ||
outputs: | ||
environment: "${{ steps.environment.outputs.ENVIRONMENT }}" | ||
app_name: "frontend${{ steps.environment.outputs.APP_NAME_SUFFIX }}" | ||
registry: "ghcr.io" | ||
image: "${{ github.repository }}" | ||
|
||
vars: | ||
name: Generate public url | ||
needs: [env] | ||
runs-on: ubuntu-22.04 | ||
environment: | ||
name: "${{ needs.env.outputs.environment }}" | ||
steps: | ||
- name: Generate public URL | ||
id: public_url | ||
run: | | ||
if [ -z "${{ vars.PUBLIC_URL }}" ]; then | ||
PUBLIC_URL="https://${{ needs.env.outputs.app_name }}.${{ vars.KUBE_INGRESS_BASE_DOMAIN }}" | ||
else | ||
PUBLIC_URL="${{ vars.PUBLIC_URL }}" | ||
fi | ||
echo "PUBLIC_URL=$PUBLIC_URL" >> $GITHUB_OUTPUT | ||
outputs: | ||
public_url: "${{ steps.public_url.outputs.PUBLIC_URL }}" | ||
|
||
build: | ||
name: Build and push docker image | ||
needs: [env, vars] | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: read | ||
packages: write | ||
environment: | ||
name: "${{ needs.env.outputs.environment }}" | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: "${{ needs.env.outputs.registry }}" | ||
username: "${{ github.actor }}" | ||
password: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: "${{ needs.env.outputs.registry }}/${{ needs.env.outputs.image }}" | ||
tags: | | ||
type=raw,value={{sha}} | ||
type=ref,event=branch | ||
# type=ref,event=pr | ||
# type=semver,pattern={{version}} | ||
# type=semver,pattern={{major}}.{{minor}} | ||
# type=raw,value=latest | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: . | ||
push: true | ||
tags: "${{ steps.meta.outputs.tags }}" | ||
labels: "${{ steps.meta.outputs.labels }}" | ||
build-args: | | ||
"NEXT_PUBLIC_APP_BASE_URL=${{ needs.vars.outputs.public_url }}" | ||
"NEXT_PUBLIC_BOTS=${{ vars.NEXT_PUBLIC_BOTS }}" | ||
"NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION=${{ vars.NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION }}" | ||
"NEXT_PUBLIC_MATOMO_BASE_URL=${{ vars.NEXT_PUBLIC_MATOMO_BASE_URL }}" | ||
"NEXT_PUBLIC_MATOMO_ID=${{ vars.NEXT_PUBLIC_MATOMO_ID }}" | ||
"NEXT_PUBLIC_REDMINE_ID=${{ vars.SERVICE_ID }}" | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
deploy: | ||
name: Deploy docker image | ||
needs: [env, vars, build] | ||
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/deploy.yml@main | ||
secrets: inherit | ||
with: | ||
environment: "${{ needs.env.outputs.environment }}" | ||
DOCKER_TAG: "${{ needs.env.outputs.registry }}/${{ needs.env.outputs.image }}" | ||
APP_NAME: "${{ needs.env.outputs.app_name }}" | ||
APP_ROOT: "/" | ||
SERVICE_ID: "${{ vars.SERVICE_ID }}" | ||
PUBLIC_URL: "${{ needs.vars.outputs.public_url }}" | ||
default_port: "3000" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
name: Validate | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.ref }}-validate" | ||
cancel-in-progress: true | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
validate: | ||
name: Validate | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 60 | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
node-version: [22.x] | ||
os: [ubuntu-22.04] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Necessary because `actions/setup-node` does not yet support `corepack`. | ||
# @see https://github.com/actions/setup-node/issues/531 | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "pnpm" | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Format | ||
run: pnpm run format:check | ||
|
||
- name: Lint | ||
run: pnpm run lint:check | ||
|
||
- name: Typecheck | ||
run: pnpm run types:check | ||
|
||
- name: Test | ||
run: pnpm run test | ||
|
||
- name: Get playwright version | ||
run: | | ||
PLAYWRIGHT_VERSION=$(pnpm ls @playwright/test --json | jq --raw-output '.[0].devDependencies["@playwright/test"].version') | ||
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV | ||
- name: Cache playwright browsers | ||
uses: actions/cache@v4 | ||
id: cache-playwright-browsers | ||
with: | ||
path: "~/.cache/ms-playwright" | ||
key: "${{ matrix.os }}-playwright-browsers-${{ env.PLAYWRIGHT_VERSION }}" | ||
|
||
- name: Install playwright browsers | ||
if: steps.cache-playwright-browsers.outputs.cache-hit != 'true' | ||
run: pnpm exec playwright install --with-deps | ||
- name: Install playwright browsers (operating system dependencies) | ||
if: steps.cache-playwright-browsers.outputs.cache-hit == 'true' | ||
run: pnpm exec playwright install-deps | ||
|
||
# https://nextjs.org/docs/pages/building-your-application/deploying/ci-build-caching#github-actions | ||
- name: Cache Next.js build output | ||
uses: actions/cache@v4 | ||
with: | ||
path: "${{ github.workspace }}/.next/cache" | ||
key: "${{ matrix.os }}-nextjs-${{ hashFiles('pnpm-lock.yaml') }}" | ||
|
||
- name: Build app | ||
run: pnpm run build | ||
env: | ||
NEXT_PUBLIC_APP_BASE_URL: "http://localhost:3000" | ||
NEXT_PUBLIC_MATOMO_BASE_URL: "${{ vars.NEXT_PUBLIC_MATOMO_BASE_URL }}" | ||
NEXT_PUBLIC_REDMINE_ID: "${{ vars.SERVICE_ID }}" | ||
|
||
- name: Run e2e tests | ||
run: pnpm run test:e2e | ||
env: | ||
NEXT_PUBLIC_APP_BASE_URL: "http://localhost:3000" | ||
NEXT_PUBLIC_MATOMO_BASE_URL: "${{ vars.NEXT_PUBLIC_MATOMO_BASE_URL }}" | ||
NEXT_PUBLIC_REDMINE_ID: "${{ vars.SERVICE_ID }}" | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: ${{ !cancelled() }} | ||
with: | ||
name: playwright-report | ||
path: playwright-report/ | ||
retention-days: 30 | ||
|
||
build-deploy: | ||
name: Build and deploy | ||
if: ${{ github.event_name == 'push' }} | ||
needs: [validate] | ||
uses: ./.github/workflows/build-deploy.yml | ||
secrets: inherit | ||
# https://docs.github.com/en/actions/using-workflows/reusing-workflows#access-and-permissions | ||
permissions: | ||
contents: read | ||
packages: write |
Oops, something went wrong.