Skip to content

Commit

Permalink
add Build workflow (#8)
Browse files Browse the repository at this point in the history
* Create build.yml

* Update build.yml
  • Loading branch information
ryanfoxtyler authored Nov 19, 2024
1 parent 8ff4e1a commit ca726b8
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Build Examples

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- '**.go'
- '**.ts'
- '**.json'
- .github/workflows/*

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 go.mod and package.json files
id: get-dirs
run: echo "dirs=$(find . \( -name 'go.mod' -o -name 'package.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: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"

- name: Setup Go
uses: actions/setup-go@v5

- name: Setup 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

0 comments on commit ca726b8

Please sign in to comment.