This repository was archived by the owner on Sep 11, 2025. It is now read-only.
chore(deps): Update actions (major) #557
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-lint | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| paths: | |
| - .github/workflows/ci-sdk-as-lint.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-lint-src: | |
| if: github.event_name == 'pull_request' | |
| name: lint (sdk/assemblyscript/src) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: sdk/assemblyscript/src | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v5 | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ">=22" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check formatting | |
| run: npm run pretty:check | |
| - name: Lint project | |
| run: npm run lint | |
| sdk-as-lint-examples: | |
| needs: get-dirs | |
| if: github.event_name == 'pull_request' | |
| name: lint | |
| 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: Check formatting | |
| run: npm run pretty:check | |
| - name: Lint project | |
| run: npm run lint |