This repository was archived by the owner on Sep 11, 2025. It is now read-only.
add kubernetes secrets provider and API to read secrets #522
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci-sdk-as-build | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| paths: | |
| - .github/workflows/ci-sdk-as-build.yml | |
| - sdk/assemblyscript/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| get-dirs: | |
| if: github.event_name == 'pull_request' | |
| name: search | |
| runs-on: ubuntu-latest | |
| outputs: | |
| dirs: ${{ steps.get-dirs.outputs.dirs }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Find Examples | |
| id: get-dirs | |
| run: > | |
| echo "dirs=$( | |
| ls -d sdk/assemblyscript/examples/* | | |
| jq -Rsc 'split("\n")[:-1]' | |
| )" >> ${GITHUB_OUTPUT} | |
| sdk-as-build-examples: | |
| needs: get-dirs | |
| if: github.event_name == 'pull_request' | |
| name: build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }} | |
| defaults: | |
| run: | |
| working-directory: ${{ matrix.dir }} | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ">=22" | |
| - name: Install source dependencies | |
| working-directory: sdk/assemblyscript/src | |
| run: npm ci | |
| - name: Install example dependencies | |
| run: npm ci | |
| - name: Build project | |
| run: npm run build |