Skip to content

Commit 22bd224

Browse files
Dev (#40)
* test * remove fake todos * first todo * adding read script metadata * first upload * update action and paths * start error codes * fix path * cleaning up server * improve logger * update and improve error logging * adding coverage * throwing errors * updatea ction * todo_to_issue.yml aktualisieren * es linting * action and setting upconfig / npm * update config * fix eslintconfig * test coverage #1 * shores, improve tests and extend functions * new route for file, fixing tests * patching and adding models * adding folder for coverage * adding descritpion for id * adding create folder * adding build infos and restructure models * more tests * parsing script * change path for script * patch schema * tests for script and adding cards for demo * card actions, script test etc. * todos aufnehmen * adding get user login * adding user function * fix dockerfile * fixing docker postinstall * updatetypes * updated mongoose-to-swagger connection * fixing test * cleanup * remove patch-package * fixing broken objects in mongoose-to-swagger * removing patches * changes in lockfile * update package-lock * changes to cards and deck * fixing scripts. test, script * change insertion etc * change file insert test todo * Automatically added GitHub issue links to TODOs * update packages * changing user modifications and stuff * changed settings and error message for test --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent e5b0726 commit 22bd224

File tree

26 files changed

+2119
-1598
lines changed

26 files changed

+2119
-1598
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
name: "Run TODO to Issue"
2-
on: [ "push" ]
2+
on:
3+
push:
4+
branches: ["dev"]
35
jobs:
46
build:
57
runs-on: "ubuntu-latest"
68
steps:
79
- uses: "actions/checkout@v4"
810
- name: "TODO to Issue"
9-
uses: "alstr/todo-to-issue-action@v5"
11+
uses: "alstr/todo-to-issue-action@v5"
12+
with:
13+
INSERT_ISSUE_URLS: "true"
14+
- name: Set Git user
15+
run: |
16+
git config --global user.name "github-actions[bot]"
17+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
18+
- name: Commit and Push Changes
19+
run: |
20+
git add .
21+
git commit -m "Automatically added GitHub issue links to TODOs"
22+
git push

Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ RUN --mount=type=bind,source=package.json,target=package.json \
2626
--mount=type=cache,target=/root/.npm \
2727
npm ci --omit=dev
2828

29-
RUN --mount=type=bind,source=package.json,target=package.json \
30-
--mount=type=bind,source=package-lock.json,target=package-lock.json \
31-
--mount=type=cache,target=/root/.npm \
32-
npm run postinstall
3329

3430
# Run the application as a non-root user.
3531
USER node

0 commit comments

Comments
 (0)