Skip to content

Commit

Permalink
refactor(ci): Moved ui/ and contract/ to tools/
Browse files Browse the repository at this point in the history
  • Loading branch information
frazarshad committed Mar 1, 2024
1 parent 9609826 commit 20b91f3
Show file tree
Hide file tree
Showing 50 changed files with 82 additions and 88 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/e2e_debug.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: E2E (debug)

on:
push:
pull_request:
branches: [master, dev]
on: [push, pull_request]

concurrency:
group:
Expand All @@ -13,9 +10,6 @@ concurrency:

jobs:
e2e:
if:
github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' ||
github.event_name == 'pull_request'
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ services:
DEST: 1
DEBUG: "SwingSet:ls,SwingSet:vat"
volumes:
- ./contract:/workspace
- ./tools/contract:/workspace
entrypoint: /workspace/scripts/run-chain.sh
networks:
- x11
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"release:patch": "release-it patch --disable-metrics",
"update:deps": "ncu -u -x 'node-fetch' && pnpm install",
"start:server": "serve node_modules/@metamask/test-dapp/dist -p 3000",
"start:contract": "cd contract && pnpm start",
"start:ui": "cd ui && pnpm dev",
"start:contract": "cd tools/contract && pnpm start",
"start:ui": "cd tools/ui && pnpm dev",
"start:json-server": "json-server json-server-db.json --port 3004",
"synpress:run:metamask": "EXTENSION=metamask SKIP_EXTENSION_SETUP=true SYNPRESS_LOCAL_TEST=true node synpress.js run --configFile=synpress.config.js",
"test:e2e:metamask": "start-server-and-test 'pnpm start:server' http-get://localhost:3000 'pnpm synpress:run:metamask'",
Expand Down
Loading

0 comments on commit 20b91f3

Please sign in to comment.