Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: 🔧 Update dancelight smoketests #867

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0b8db22
refactor: root pnpm workspaces
mario-sangar Feb 3, 2025
935bd1c
Merge branch 'master' into f/mario-sangar-root-pnpm-workspaces
girazoki Feb 3, 2025
6590d05
refactor: :recycle: Replace prettier with Biome
timbrinded Feb 4, 2025
cab83ab
update packages
timbrinded Feb 4, 2025
d1a5f07
Merge branch 'master' of github.com:moondance-labs/tanssi into refact…
timbrinded Feb 4, 2025
71b23fa
fix lint issues
timbrinded Feb 4, 2025
4a78286
regenerate api-augment
timbrinded Feb 4, 2025
fa6d8f9
fix tc failure
timbrinded Feb 4, 2025
d7bbe22
fix: 😰 Fix all linting issues
timbrinded Feb 5, 2025
e8ab9b1
Merge branch 'master' of github.com:moondance-labs/tanssi into refact…
timbrinded Feb 5, 2025
f9b1343
fix: frontier tests
timbrinded Feb 5, 2025
1d78f13
fix: relay-tests
timbrinded Feb 5, 2025
d232b07
fix: zombie-relay-test
timbrinded Feb 5, 2025
62cdcdc
fix test
timbrinded Feb 5, 2025
5ecf2cd
Merge branch 'master' into refactor/switch-biome
timbrinded Feb 5, 2025
b45ccaf
remove eslint
timbrinded Feb 5, 2025
748901a
Merge branch 'refactor/switch-biome' of github.com:moondance-labs/tan…
timbrinded Feb 5, 2025
244fa77
Merge branch 'master' into refactor/switch-biome
timbrinded Feb 5, 2025
7aa9c62
fix smoke tests
timbrinded Feb 6, 2025
cc58367
ignore IDE files
timbrinded Feb 6, 2025
6062344
fix data preserver fee calc
timbrinded Feb 6, 2025
3e83f65
Merge branch 'master' of github.com:moondance-labs/tanssi into refact…
timbrinded Feb 7, 2025
f4437c3
refactor: ♻️ fix babe types
timbrinded Feb 7, 2025
70da8e3
refactor: ♻️ Update authority smoke test
timbrinded Feb 7, 2025
811b04b
fix: update beefy test
timbrinded Feb 7, 2025
b5593e7
progress
timbrinded Feb 9, 2025
a82ecfa
update validator rewards smoke
timbrinded Feb 10, 2025
fd38b36
update inflation rewards smoke
timbrinded Feb 10, 2025
d8b24e2
update session/ext validators test
timbrinded Feb 10, 2025
c7ba6cd
update config consistency test
timbrinded Feb 10, 2025
a9ad1a1
update remaining dancelight smoke tests
timbrinded Feb 10, 2025
4e5e697
Merge branch 'master' of github.com:moondance-labs/tanssi into feat/a…
timbrinded Feb 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ jobs:
cache: "pnpm"
- name: "Formatting check"
run: |
cd test
pnpm install
pnpm run fmt

Expand All @@ -220,7 +219,6 @@ jobs:
cache: "pnpm"
- name: "Linting check"
run: |
cd test
pnpm install
pnpm run lint

Expand Down
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@

# Temporary files
**/tmp
raw.json
raw.json

# IDE files
**/.zed/
**/.vscode/
**/.idea/
.cursor
25 changes: 0 additions & 25 deletions .prettierignore

This file was deleted.

7 changes: 0 additions & 7 deletions .prettierrc

This file was deleted.

63 changes: 63 additions & 0 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false,
},
"files": {
"ignoreUnknown": false,
"ignore": [
"**/html/**",
"**/build/**",
"**/target/**",
"**/scripts/tmp/**",
"**/node_modules/**",
"**/.yarn/**",
"test/tsconfig.json",
"tmp",
"**/contracts/out",
"**/tmp/",
"**/html/"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"lineWidth": 120,
"indentWidth": 4,
},
"organizeImports": {
"enabled": true,
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noAsyncPromiseExecutor": "off",
"noExplicitAny": "off",
"noShadowRestrictedNames": "off",
},
"complexity": {
"noForEach": "off",
},
},
"ignore": [],
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always",
"trailingCommas": "es5",
},
},
"json": {
"formatter": {
"enabled": false,
},
"linter": {
"enabled": false,
},
},
}
66 changes: 35 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,51 +11,55 @@
"scripts": {
"clean-all": "rm -rf node_modules && pnpm -r clean",
"build": "pnpm -r build",
"fmt": "pnpm -r fmt",
"fmt:fix": "pnpm -r fmt:fix",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"postinstall": "pnpm build"
},
"dependencies": {
"@polkadot/api": "15.4.1",
"@polkadot/api-augment": "15.4.1",
"@polkadot/api-base": "15.4.1",
"@polkadot/api-derive": "15.4.1",
"@polkadot/rpc-augment": "15.4.1",
"@polkadot/rpc-core": "15.4.1",
"@polkadot/rpc-provider": "15.4.1",
"@polkadot/typegen": "15.4.1",
"@polkadot/types": "15.4.1",
"@polkadot/types-augment": "15.4.1",
"@polkadot/types-codec": "15.4.1",
"@polkadot/types-create": "15.4.1",
"@polkadot/types-known": "15.4.1",
"@polkadot/types-support": "15.4.1",
"@polkadot/api": "15.5.1",
"@polkadot/api-base": "15.5.1",
"@polkadot/api-derive": "15.5.1",
"@polkadot/keyring": "13.3.1",
"@polkadot/rpc-augment": "15.5.1",
"@polkadot/rpc-core": "15.5.1",
"@polkadot/rpc-provider": "15.5.1",
"@polkadot/typegen": "15.5.1",
"@polkadot/types": "15.5.1",
"@polkadot/types-augment": "15.5.1",
"@polkadot/types-codec": "15.5.1",
"@polkadot/types-create": "15.5.1",
"@polkadot/types-known": "15.5.1",
"@polkadot/types-support": "15.5.1",
"@polkadot/util": "13.3.1",
"@polkadot/util-crypto": "13.3.1"

},
"devDependencies": {
"@types/node": "22.10.5"
"@biomejs/biome": "1.9.4",
"@types/node": "22.12.0",
"tsx": "4.19.2",
"typescript": "5.5.4"
},
"pnpm": {
"overrides": {
"@polkadot/api": "15.4.1",
"@polkadot/api-augment": "15.4.1",
"@polkadot/api-base": "15.4.1",
"@polkadot/api-derive": "15.4.1",
"@polkadot/rpc-augment": "15.4.1",
"@polkadot/rpc-core": "15.4.1",
"@polkadot/rpc-provider": "15.4.1",
"@polkadot/typegen": "15.4.1",
"@polkadot/types": "15.4.1",
"@polkadot/types-augment": "15.4.1",
"@polkadot/types-codec": "15.4.1",
"@polkadot/types-create": "15.4.1",
"@polkadot/types-known": "15.4.1",
"@polkadot/types-support": "15.4.1",
"@polkadot/api": "15.5.1",
"@polkadot/api-base": "15.5.1",
"@polkadot/api-derive": "15.5.1",
"@polkadot/rpc-augment": "15.5.1",
"@polkadot/rpc-core": "15.5.1",
"@polkadot/rpc-provider": "15.5.1",
"@polkadot/typegen": "15.5.1",
"@polkadot/types": "15.5.1",
"@polkadot/types-augment": "15.5.1",
"@polkadot/types-codec": "15.5.1",
"@polkadot/types-create": "15.5.1",
"@polkadot/types-known": "15.5.1",
"@polkadot/types-support": "15.5.1",
"@polkadot/keyring": "13.3.1",
"@polkadot/util": "13.3.1",
"@polkadot/util-crypto": "13.3.1",
"inquirer": "9.2.16"
"typescript": "5.5.4"
}
},
"keywords": [],
Expand Down
Loading