Skip to content

Commit

Permalink
chore: fix github action paths
Browse files Browse the repository at this point in the history
Signed-off-by: Tomás Migone <[email protected]>
  • Loading branch information
tmigone committed Mar 8, 2024
1 parent 41a4c97 commit 659bca5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: CI - packages/contracts

env:
CI: true
Expand All @@ -23,7 +23,9 @@ jobs:
- name: Set up environment
uses: ./.github/actions/setup
- name: Run tests
run: yarn test:coverage
run: |
pushd packages/contracts
yarn test:coverage
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-token-dist.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: CI - packages/token-distribution

env:
CI: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: E2E
name: E2E - packages/contracts

env:
CI: true
Expand Down Expand Up @@ -41,4 +41,5 @@ jobs:
sed -i'' -e 's/^\(.*dev.period.*\)/# \1/' docker-compose.yaml
./test-node.bash --init --batchposters 0 --redundantsequencers 0 --detach
popd
pushd packages/contracts
L1_NETWORK=localnitrol1 L2_NETWORK=localnitrol2 yarn test:e2e

0 comments on commit 659bca5

Please sign in to comment.