chore(deps): Update minor and patch #192
Workflow file for this run
This file contains 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: Build Examples | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
paths: | |
- "**.go" | |
- "**.mod" | |
- "**.sum" | |
- "**.ts" | |
- "**.json" | |
- .github/workflows/* | |
schedule: | |
- cron: 0 5 * * * | |
permissions: | |
contents: read | |
jobs: | |
get-dirs: | |
name: search | |
runs-on: ubuntu-latest | |
outputs: | |
dirs: ${{ steps.get-dirs.outputs.dirs }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Search for modus.json files | |
id: get-dirs | |
run: | | |
echo "dirs=$(find . -name 'modus.json' -exec dirname {} \; | sed 's|^\./||' | jq -Rsc 'split("\n")[:-1]')" >> ${GITHUB_OUTPUT} | |
build: | |
needs: get-dirs | |
name: build | |
runs-on: warp-ubuntu-latest-x64-4x | |
strategy: | |
matrix: | |
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }} | |
defaults: | |
run: | |
working-directory: ${{ matrix.dir }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- name: Get Go Toolchain version | |
id: toolchain | |
run: echo "version=$(sed -ne '/^toolchain /s/^toolchain go//p' go.mod)" >> "$GITHUB_OUTPUT" | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ steps.toolchain.outputs.version }} | |
- name: Set up TinyGo | |
uses: acifani/setup-tinygo@v2 | |
with: | |
tinygo-version: 0.34.0 | |
- name: Build project | |
run: npx -p @hypermode/modus-cli -y modus build | |
shell: bash |