Add proof verification and update instructions #24
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: End-to-End Testing | |
on: [push, pull_request] | |
permissions: read-all | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
cache-dependency-path: apps/aggsig_checker_cli/package-lock.json | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install Scarb and Stwo | |
run: | | |
cd packages/aggsig_checker | |
make install | |
- name: Install jq | |
run: sudo apt-get install -y jq | |
- name: Install CLI dependencies | |
run: | | |
cd apps/aggsig_checker_cli | |
npm i | |
cd ../.. | |
- name: Run end-to-end test | |
run: | | |
chmod +x scripts/verify_nostr_event_batch_signatures.sh | |
./scripts/verify_nostr_event_batch_signatures.sh |