Initial CI/CD pipeline #3

Merged
echo merged 10 commits from feature/ci-pipeline into main 2026-06-23 23:36:15 +00:00
Showing only changes of commit e272c852a9 - Show all commits

View file

@ -10,6 +10,8 @@ jobs:
container: container:
image: swift:6.3 image: swift:6.3
steps: steps:
- name: Install Node.js
run: apt-get update -qq && apt-get install -y -qq nodejs
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Lint - name: Lint
run: swift format lint --recursive Sources/ run: swift format lint --recursive Sources/
@ -21,6 +23,10 @@ jobs:
options: --privileged options: --privileged
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Pre-install Flatpak SDK
run: |
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install --user --noninteractive org.gnome.Platform//50 org.gnome.Sdk//50 2>&1 | tail -5
- uses: https://github.com/flatpak/flatpak-github-actions/flatpak-builder@v6.7 - uses: https://github.com/flatpak/flatpak-github-actions/flatpak-builder@v6.7
with: with:
manifest-path: dev.bscubed.Luminate.json manifest-path: dev.bscubed.Luminate.json