Merge pull request #1066 from o1-labs/docs/o1js-api-reference-6ebbc23 #1962
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: Test-Tutorials | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: {} | |
jobs: | |
test-tutorials: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
example-path: | |
- examples/zkapps/01-hello-world | |
- examples/zkapps/02-private-inputs-and-hash-functions | |
- examples/zkapps/05-common-types-and-functions | |
- examples/zkapps/09-recursion | |
- examples/zkapps/10-account-updates | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set Git config (global) | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Test" | |
- name: Install dependencies, build and run ${{ matrix.example-path }}/build/src/main.js | |
run: | | |
cd ${{ matrix.example-path }} | |
npm ci | |
npm run build | |
example_path="${{ matrix.example-path }}" | |
if [[ "$example_path" == "examples/zkapps/09-recursion" ]]; then | |
node build/src/vote.js | |
node build/src/rollup.js | |
else | |
node build/src/main.js | |
fi | |
test-features: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies, build and test | |
run: | | |
cd examples/zkapps/feature-overview | |
npm ci | |
npm run test | |
build-tutorials: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
example-path: | |
- examples/zkapps/04-zkapp-browser-ui | |
- examples/zkapps/07-oracles | |
- examples/zkapps/anonymous-message-board | |
- examples/zkapps/interacting-with-zkApps-server-side | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set Git config (global) | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Test" | |
- name: Install dependencies and build ${{ matrix.example-path }} | |
run: | | |
cd ${{ matrix.example-path }} | |
if [ -d "contracts" ]; then | |
cd contracts | |
fi | |
npm ci | |
npm run build | |