This repository was archived by the owner on Sep 11, 2025. It is now read-only.
chore(deps): Update actions (major) #559
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@v5 | |
| - 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@v5 | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| 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 |