This PR mainly refactors the code by extracting a "core" package which is then used by the "backend" and "frontend" apps. Apart from this the PR also contains several smaller changes like fixing dependabot, upgrading dependencies, aligned "package.json" files, added tests, ... addresses step 1 of #32 closes #136 --------- Co-authored-by: Marco Pasqualetti <marco.pasqualetti@live.com>
19 lines
394 B
YAML
19 lines
394 B
YAML
name: Update version tags
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- "**"
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
update-semver:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: haya14busa/action-update-semver@7d2c558640ea49e798d46539536190aff8c18715 # v1.5.1
|