Skip to content

Commit

Permalink
refactor(repo): rename extras folder to demos (#1267)
Browse files Browse the repository at this point in the history
  • Loading branch information
drahnr authored Feb 7, 2025
1 parent 8cf515d commit ac4fafc
Show file tree
Hide file tree
Showing 51 changed files with 21 additions and 34 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: "Demos: 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 @@ -30,6 +30,7 @@ jobs:
contracts
core
ci
demos
deps
docker
ethapi
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/linked-token/lib/forge-std"]
path = demos/linked-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/axelar-token/lib/forge-std"]
path = demos/axelar-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.
1 change: 1 addition & 0 deletions demos/axelar-token/lib/forge-std
Submodule forge-std added at 3b20d6
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: 1 addition & 0 deletions demos/linked-token/lib/forge-std
Submodule forge-std added at 3b20d6
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
22 changes: 4 additions & 18 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 ac4fafc

Please sign in to comment.