update CI config #326
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: | ||
# trigger on git push | ||
push: | ||
paths: | ||
- "projects/**" | ||
- ".github/workflows/build-examples.yml" # might not need this | ||
# trigger manually | ||
workflow_dispatch: | ||
jobs: | ||
build-example: | ||
name: Build Example | ||
runs-on: ubuntu-latest | ||
env: | ||
CI: false # might not need this. this refers to react ui related things. | ||
strategy: | ||
# build all examples independently | ||
fail-fast: false | ||
matrix: | ||
project: [] | ||
install: ["clean-install"] | ||
node-version: [16] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Install, Build, and Test | ||
run: | | ||
cd "projects/${{ matrix.project }}" | ||
yarn install | ||
yarn build | ||
yarn test | ||
build-foundry-example: | ||
name: Build Foundry Examples | ||
runs-on: ubuntu-latest | ||
strategy: | ||
# build all examples independently | ||
fail-fast: false | ||
matrix: | ||
project: ["money-streaming-intro-foundry"] | ||
install: ["clean-install"] | ||
steps: | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- name: Install, Build, and Test | ||
run: | | ||
cd "projects/${{ matrix.project }}" | ||
forge install | ||
forge build | ||
forge test |