Revert "Auxiliary commit to revert individual files from ccbb2d1a761c… #1777
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: Test-Tutorials | |
on: | |
push: | |
jobs: | |
hello-world: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
# In case of version change, update README.md accordingly | |
node-version: 18 | |
- run: | | |
npm ci | |
git config --global user.email "[email protected]" | |
git config --global user.name "Test" | |
npx ts-node scripts/tutorial-runner.ts docs/zkapps/tutorials/01-hello-world.mdx |