Conversation
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
❌ 1 Tests Failed:
View the full list of 1 ❄️ flaky tests
To view more test analytics, go to the Test Analytics Dashboard |
3fe56fc to
66509d2
Compare
gergosimonyi
left a comment
There was a problem hiding this comment.
Backend (which here is nothing) ✅
66509d2 to
5e75212
Compare
5e75212 to
3b80770
Compare
4d68592 to
7bba5cf
Compare
|
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-10e854486f33a9de2f509f3b5f6e4dbf6a519581
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)sAfterwards, run the upgrade commands from the latest release notes. Instructions for KubernetesAdd the following block to your authentik:
outposts:
container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
image:
repository: ghcr.io/goauthentik/dev-server
tag: gh-10e854486f33a9de2f509f3b5f6e4dbf6a519581Afterwards, run the upgrade commands from the latest release notes. |
c76f52d to
5dd1662
Compare
b61c57d to
dc12ab4
Compare
022f958 to
10e8544
Compare
faec346 to
69071eb
Compare
69071eb to
96a4a5f
Compare
96a4a5f to
ab31550
Compare
| ARG GIT_BUILD_HASH | ||
| ENV GIT_BUILD_HASH=$GIT_BUILD_HASH | ||
|
|
||
| RUN --mount=type=bind,target=/work/website/package.json,src=./website/package.json \ |
There was a problem hiding this comment.
So the goal here is to only re-run this step when package.json or package-lock.json changed, and thus improve build speeds when only the code changes. I don't know how that would work with workspaces, probably need to mount a few more files, but in any case, we should preserve the current behavior
There was a problem hiding this comment.
I've only added this comment here, but it also goes for other changed dockerfiles
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version-file: package.json | ||
| cache: "npm" | ||
| cache-dependency-path: package-lock.json | ||
| - name: Prepare Dependencies | ||
| run: npm ci |
There was a problem hiding this comment.
Isn't this already done by .github/actions/setup?
Details
Depends on #14555
This PR updates our ESLint and Prettier scripts for use at the repo root. Also included is a collection of ignored "nightmare mode" rules that can be addressed in follow up PRs.
Checklist
ak test authentik/)make lint-fix)If an API change has been made
make gen-build)If changes to the frontend have been made
make web)If applicable
make website)