Skip to content

chore: update stalwart Helm chart to version 0.2.0 with new service ports and configuration #142

chore: update stalwart Helm chart to version 0.2.0 with new service ports and configuration

chore: update stalwart Helm chart to version 0.2.0 with new service ports and configuration #142

Workflow file for this run

name: Pre build ( Health check )
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://npm.pkg.github.com'
- name: Configure @internxt registry
run: |
echo "@internxt:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${NPM_TOKEN}" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build