feature/forgejo-actions #13

Merged
manuel merged 5 commits from feature/forgejo-actions into main 2026-03-07 23:53:08 +01:00
3 changed files with 16 additions and 17 deletions
Showing only changes of commit ed99a8bed4 - Show all commits

View file

@ -1,16 +0,0 @@
kind: pipeline
type: docker
name: default
steps:
- name: install
image: node:22-alpine
commands:
- npm install
- npm run lint
- npm run build
when:
branch:
include:
- main
- feature/*

View file

@ -0,0 +1,15 @@
on: [push]
jobs:
maven-build:
runs-on: docker
container:
image: node:25-trixie
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Run npm install
run: npm install
- name: Run npm build
run: npm run build
- name: Run npm lints
run: npm run lint

2
next-env.d.ts vendored
View file

@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.