Skip to content

Commit

Permalink
Development (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkis committed Sep 26, 2024
2 parents 8e380a3 + 75c8cec commit 8fd92b1
Show file tree
Hide file tree
Showing 32 changed files with 1,638 additions and 961 deletions.
5 changes: 1 addition & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"schedule:weekly"
],
"extends": ["config:recommended", "schedule:daily", "schedule:automergeDaily"],
"baseBranches": ["development"],
"prHourlyLimit": 2,
"labels": ["dependencies"],
Expand Down
30 changes: 16 additions & 14 deletions .github/workflows/client-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,23 @@ on:
branches:
- development
paths:
- 'Tekst-Web/public/**'
- 'Tekst-Web/scripts/**'
- 'Tekst-Web/src/**'
- 'Tekst-Web/package.json'
- 'Tekst-Web/package-lock.json'
- "Tekst-Web/public/**"
- "Tekst-Web/scripts/**"
- "Tekst-Web/src/**"
- "Tekst-Web/package.json"
- "Tekst-Web/package-lock.json"
- ".github/workflows/client-build.yml"
pull_request:
branches:
- main
- development
paths:
- 'Tekst-Web/public/**'
- 'Tekst-Web/scripts/**'
- 'Tekst-Web/src/**'
- 'Tekst-Web/package.json'
- 'Tekst-Web/package-lock.json'
- "Tekst-Web/public/**"
- "Tekst-Web/scripts/**"
- "Tekst-Web/src/**"
- "Tekst-Web/package.json"
- "Tekst-Web/package-lock.json"
- ".github/workflows/client-build.yml"
workflow_dispatch:

jobs:
Expand All @@ -32,12 +34,12 @@ jobs:
working-directory: ./Tekst-Web

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js 20.14.0
uses: actions/setup-node@v3
with:
node-version: '20.14.0'
cache: 'npm'
cache-dependency-path: './Tekst-Web/package-lock.json'
node-version: "20.14.0"
cache: "npm"
cache-dependency-path: "./Tekst-Web/package-lock.json"
- run: npm install
- run: npm run build --if-present
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run:
working-directory: ./docs
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/server-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- "Tekst-API/tests/**"
- "Tekst-API/pyproject.toml"
- "Tekst-API/poetry.lock"
- ".github/workflows/server-style.yml"
pull_request:
branches:
- development
Expand All @@ -18,6 +19,7 @@ on:
- "Tekst-API/tests/**"
- "Tekst-API/pyproject.toml"
- "Tekst-API/poetry.lock"
- ".github/workflows/server-style.yml"
workflow_dispatch:

jobs:
Expand All @@ -29,7 +31,7 @@ jobs:
working-directory: ./Tekst-API

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- uses: actions/setup-python@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/server-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- "Tekst-API/tests/**"
- "Tekst-API/pyproject.toml"
- "Tekst-API/poetry.lock"
- ".github/workflows/server-tests.yml"
pull_request:
branches:
- development
Expand All @@ -18,6 +19,7 @@ on:
- "Tekst-API/tests/**"
- "Tekst-API/pyproject.toml"
- "Tekst-API/poetry.lock"
- ".github/workflows/server-tests.yml"
workflow_dispatch:

jobs:
Expand All @@ -42,7 +44,7 @@ jobs:
working-directory: ./Tekst-API

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- uses: actions/setup-python@v4
Expand Down
Loading

0 comments on commit 8fd92b1

Please sign in to comment.