feat: batch address update rebased fixed #4097
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
name: js-tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
stateless-js: | |
name: stateless-js | |
if: github.event.pull_request.draft == false | |
runs-on: buildjet-2vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup and build | |
uses: ./.github/actions/setup-and-build | |
- name: Build CLI | |
run: | | |
source ./scripts/devenv.sh | |
npx nx build @lightprotocol/zk-compression-cli --skip-nx-cache | |
# Comment for breaking changes to Photon | |
- name: Run CLI tests | |
run: | | |
source ./scripts/devenv.sh | |
npx nx test @lightprotocol/zk-compression-cli | |
- name: Run stateless.js tests | |
run: | | |
source ./scripts/devenv.sh | |
npx nx test @lightprotocol/stateless.js | |
- name: Run compressed-token tests | |
run: | | |
source ./scripts/devenv.sh | |
npx nx test @lightprotocol/compressed-token |