Skip to content

build(deps): bump express from 4.18.1 to 4.21.0 in /api #84

build(deps): bump express from 4.18.1 to 4.21.0 in /api

build(deps): bump express from 4.18.1 to 4.21.0 in /api #84

Workflow file for this run

name: ci
on: [ push, workflow_dispatch ]
jobs:
build_app:
name: Build app
if: ${{ !contains(github.event.head_commit.message, 'skip app') }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
node: [ 20 ]
debian: [ 'bookworm' ]
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: true
- name: Init runner
run: bash ./scripts/init_runner.sh ${{ github.job }}
- name: Setup workspace
env:
KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }}
run: bash ./scripts/setup_workspace.sh -k kli
- name: Build app
env:
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
run: bash ./scripts/build_app.sh -p -r ${{ github.job }} -n ${{ matrix.node }} -d ${{ matrix.debian }}
build_docs:
name: Build docs
if: ${{ startsWith(github.event.head_commit.message, 'docs:') || contains(github.event.head_commit.message, 'build doc') }}
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: true
- name: Init runner
run: bash ./scripts/init_runner.sh ${{ github.job }}
- name: Setup workspace
env:
KALISIO_GITHUB_URL: ${{ secrets.KALISIO_GITHUB_URL }}
run: bash ./scripts/setup_workspace.sh -k nokli
- name: Build docs
env:
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
# run: bash ./scripts/build_docs.sh -p -r ${{ github.job }}
run: bash ./scripts/build_docs.sh -r ${{ github.job }}