Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisht13 committed Jan 21, 2024
1 parent 86d5560 commit b9527f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
- name: "Setup Rust"
uses: ATiltedTree/setup-rust@v1
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
rust-version: nightly
components: clippy
toolchain: stable
override: true
components: rustfmt, clippy
- name: Download circom (Linux)
run: wget https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 -O /usr/local/bin/circom && chmod +x /usr/local/bin/circom
- name: Install yarn
Expand Down
6 changes: 3 additions & 3 deletions packages/apis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zk-email/zk-regex-apis",
"version": "1.1.7",
"version": "1.1.6",
"description": "apis compatible with [zk-regex](https://github.com/zkemail/zk-regex/tree/main).",
"contributors": [
"Javier Su <javier.su.weijie@gmail.com>",
Expand All @@ -17,8 +17,8 @@
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install": "npm run build-release",
"install-release": "node-pre-gyp install --update-binary --fallback-to-build=false",
"install": "npm run build-debug",
"install-release": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release",
"test": "cargo test",
"package": "node-pre-gyp package",
"upload-binary": "npm run package && node-pre-gyp-github publish"
Expand Down

0 comments on commit b9527f1

Please sign in to comment.