Skip to content

Commit

Permalink
Update deno tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Nov 21, 2024
1 parent 454956a commit 10efaf8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test-deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Bootstrap
run: deno install
- name: Generate
run: cd packages/as-sha256 && deno run -R -W -I scripts/codegen.ts
run: cd packages/as-sha256 && deno run -I scripts/codegen.ts
- name: Unit Tests
run: JS_RUNTIME=deno deno task --recursive --filter '' test:unit

Expand All @@ -37,23 +37,23 @@ jobs:
# Otherwise just doing `yarn test:spec` you can't tell which specific suite failed
# many of the suites have identical names for minimal and mainnet
- name: Spec tests general
run: deno task -R -W test:spec-generic
run: deno task test:spec-generic
working-directory: packages/ssz
- name: Spec tests phase0-minimal
run: LODESTAR_FORK=phase0 deno task -R -W test:spec-static-minimal
run: LODESTAR_FORK=phase0 deno task test:spec-static-minimal
working-directory: packages/ssz
- name: Spec tests phase0-mainnet
run: LODESTAR_FORK=phase0 deno task -R -W test:spec-static-mainnet
run: LODESTAR_FORK=phase0 deno task test:spec-static-mainnet
working-directory: packages/ssz
- name: Spec tests altair-minimal
run: LODESTAR_FORK=altair deno task -R -W test:spec-static-minimal
run: LODESTAR_FORK=altair deno task test:spec-static-minimal
working-directory: packages/ssz
- name: Spec tests altair-mainnet
run: LODESTAR_FORK=altair deno task -R -W test:spec-static-mainnet
run: LODESTAR_FORK=altair deno task test:spec-static-mainnet
working-directory: packages/ssz
- name: Spec tests bellatrix-minimal
run: LODESTAR_FORK=bellatrix deno task -R -W test:spec-static-minimal
run: LODESTAR_FORK=bellatrix deno task test:spec-static-minimal
working-directory: packages/ssz
- name: Spec tests bellatrix-mainnet
run: LODESTAR_FORK=bellatrix deno task -R -W test:spec-static-mainnet
run: LODESTAR_FORK=bellatrix deno task test:spec-static-mainnet
working-directory: packages/ssz

0 comments on commit 10efaf8

Please sign in to comment.