Skip to content

Commit

Permalink
refactor(repo): rename extras folder to demos
Browse files Browse the repository at this point in the history
  • Loading branch information
drahnr committed Feb 6, 2025
1 parent 8cf515d commit 63fd3a6
Show file tree
Hide file tree
Showing 49 changed files with 17 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
uses: ./.github/workflows/contracts-sast.yaml
needs: [contracts-prettier]

extras:
uses: ./.github/workflows/extras.yaml
demos:
uses: ./.github/workflows/demos.yaml
needs: [contracts-prettier]

build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/contracts-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: cd contracts; make test

- name: Run axelar-token tests
run: cd extras/axelar-token; forge test -vvv --ffi
run: cd demos/axelar-token; forge test -vvv --ffi

- name: Run linked-token tests
run: cd extras/linked-token; forge test -vvv --ffi
run: cd demos/linked-token; forge test -vvv --ffi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Extras
name: Demos

on:
workflow_call:
Expand All @@ -8,13 +8,13 @@ env:

jobs:
examples-axelar-token:
name: "Extras: Axelar token"
name: "Demo: Axelar token"
runs-on: ubuntu-latest
strategy:
fail-fast: true
defaults:
run:
working-directory: ./extras/axelar-token
working-directory: ./demos/axelar-token
steps:
- uses: actions/checkout@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
docker
ethapi
ext
demos
extras
infra
ipld
Expand All @@ -50,4 +51,4 @@ jobs:
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.
doesn't start with an uppercase character.
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[submodule "contracts/lib/forge-std"]
path = contracts/lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "extras/axelar-token/lib/forge-std"]
path = extras/axelar-token/lib/forge-std
[submodule "demos/axelar-token/lib/forge-std"]
path = demos/axelar-token/lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "extras/linked-token/lib/forge-std"]
path = extras/linked-token/lib/forge-std
[submodule "demos/linked-token/lib/forge-std"]
path = demos/linked-token/lib/forge-std
url = https://github.com/foundry-rs/forge-std
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion extras/axelar-token/lib/forge-std
Submodule forge-std deleted from ae570f
1 change: 0 additions & 1 deletion extras/linked-token/lib/forge-std
Submodule forge-std deleted from ae570f
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packages:
- 'contracts'
- 'extras/axelar-token'
- 'extras/linked-token'
- 'demos/axelar-token'
- 'demos/linked-token'

0 comments on commit 63fd3a6

Please sign in to comment.