Skip to content

feat(test): adding JS tests to the CI #1106

feat(test): adding JS tests to the CI

feat(test): adding JS tests to the CI #1106

Workflow file for this run

name: Workflow - Pull Request
on:
workflow_dispatch:
pull_request:
branches: [main]
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
pull-requests: write
jobs:
changelog:
name: Enforce CHANGELOG
uses: ./.github/workflows/changelog.yml
linters:
name: Run linters
uses: ./.github/workflows/linters.yml
needs: changelog
rust_check:
name: Run check
uses: ./.github/workflows/rust-check.yml
needs: changelog
linters_cargo:
name: Run Cargo linters
uses: ./.github/workflows/linters-cargo.yml
needs: rust_check
coverage:
name: Run Coverage
uses: ./.github/workflows/coverage.yml

Check failure on line 37 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / Workflow - Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/pull-request.yml (Line: 37, Col: 11): Secret ETH_FORK_URL is required, but not provided while calling.

Check failure on line 37 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / Workflow - Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/pull-request.yml (Line: 37, Col: 11): Secret ETH_FORK_URL is required, but not provided while calling.

Check failure on line 37 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / Workflow - Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/pull-request.yml (Line: 37, Col: 11): Secret ETH_FORK_URL is required, but not provided while calling.
needs: changelog
build:
name: Build Madara
uses: ./.github/workflows/build.yml
needs: changelog
js_test:
name: Run JS Tests
uses: ./.github/workflows/starknet-js-test.yml
needs: build