Skip to content

chore: update try-aks submodule (commit link) #69

chore: update try-aks submodule (commit link)

chore: update try-aks submodule (commit link) #69

Workflow file for this run

name: Integration Build
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allow submodule repos to trigger this workflow
repository_dispatch:
types: [submodule-updated]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://npm.pkg.github.com
- name: Install control plane dependencies
run: |
if [ -f package-lock.json ]; then
npm ci
else
npm install
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Contract checks
run: node tooling/workspacectl.mjs contract
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Full-stack build
run: node tooling/workspacectl.mjs build
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}