Commit a8016154 authored by Grant's avatar Grant
Browse files

add fedi tests

parent 8f46b5ed
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
test federation:
  stage: test
  trigger:
    include: .gitlab/ci/federation_test.yml

build wiki:
  stage: build
  trigger:
+19 −0
Original line number Diff line number Diff line
test:
  parallel:
    matrix:
      - SERVICE: ["grants.cafe", "toast.ooo"]
  image: node:24-alpine
  services:
    - name: postgres:14-alpine
      alias: postgres
      variables:
        POSTGRES_HOST_AUTH_METHOD: trust
  variables:
    DATABASE_URL: postgres://postgres@postgres:5432/fediauth
    SESSION_SECRET: test
    TEST_FEDERATION_MODE: KEYRING
  before_script:
    - npm i --include=dev
    - npx -w backend prisma migrate deploy
  script:
    - npm -w backend run test
 No newline at end of file

.npmrc

0 → 100644
+1 −0
Original line number Diff line number Diff line
@sc07:registry=https://sc07.dev/api/v4/groups/3/-/packages/npm/
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
v23.5.0
v24.12.0

.vscode/settings.json

0 → 100644
+5 −0
Original line number Diff line number Diff line
{
  "yaml.schemas": {
    "https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json": ".gitlab/**/*.yml"
  }
}
Loading