Compare commits
3 Commits
6ac43d30b3
...
main
Author | SHA1 | Date | |
---|---|---|---|
ee8ddc4947 | |||
8d4125daf0 | |||
f5a5020c88 |
22
.gitea/workflows/build.yml
Normal file
22
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: Build Node
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- prod
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- prod
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 24
|
||||||
|
cache: npm
|
||||||
|
- run: npm ci
|
||||||
|
- run: ls
|
@ -16,4 +16,4 @@ This is the source code for [my personal webpage](https://molnarandrei.com)
|
|||||||
- Design Patterns: Elements of Reusable Object Oriented Software (done)
|
- Design Patterns: Elements of Reusable Object Oriented Software (done)
|
||||||
- Building Microservices (not started yet)
|
- Building Microservices (not started yet)
|
||||||
- [ ] More portfolio public code
|
- [ ] More portfolio public code
|
||||||
- [ ] Store built with htmx and Java Spring because I want to learn html and work with templates.
|
- [ ] Store built with htmx and Java Spring because I want to learn htmx.
|
||||||
|
@ -25,6 +25,12 @@
|
|||||||
{#each Object.entries(navlinks) as [id, intl]}
|
{#each Object.entries(navlinks) as [id, intl]}
|
||||||
<a href="#{id}" class="chip round">{$_(`${intl}.slug`)}</a>
|
<a href="#{id}" class="chip round">{$_(`${intl}.slug`)}</a>
|
||||||
{/each}
|
{/each}
|
||||||
|
<a href="https://gitea.molnarandrei.com/explore/repos"
|
||||||
|
class="chip round"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer">
|
||||||
|
Git
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<button class="s transparent circle" data-ui="#nav-menu">
|
<button class="s transparent circle" data-ui="#nav-menu">
|
||||||
<i>menu</i>
|
<i>menu</i>
|
||||||
|
Reference in New Issue
Block a user