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

remove manual polkadotjs warning removal call in favour of postinstall script #1058

Merged
merged 2 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ jobs:
project-cache-${{ runner.os }}-${{ runner.arch }}-

- run: npm install
- run: npm run removePolkadotJSWarnings

- name: Clippy
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/contract_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ jobs:
project-cache-${{ runner.os }}-${{ runner.arch }}-

- run: npm install
- run: npm run removePolkadotJSWarnings

- name: Check contract version matches provider version
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,4 @@ jobs:

- run: npm install -g npm@8.9
- run: npm install
- run: npm run removePolkadotJSWarnings
- run: npm run lint
1 change: 0 additions & 1 deletion .github/workflows/post_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ jobs:
- run: mkdir -p ~/.cache/Cypress

- run: npm install
- run: npm run removePolkadotJSWarnings

- name: Rust formatting check
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/provider_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ jobs:
project-cache-${{ runner.os }}-${{ runner.arch }}-

- run: npm install
- run: npm run removePolkadotJSWarnings

# build the packages
- name: Build packages
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@ jobs:
if: steps.check_version_any.outputs.bump == 'true'
run: |
npm install
npm run removePolkadotJSWarnings

# at this point there should be a build in the cache, so we can begin building artifacts for the release

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ jobs:
project-cache-${{ runner.os }}-${{ runner.arch }}-

- run: npm install
- run: npm run removePolkadotJSWarnings

- name: Rust formatting check
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ jobs:
run: npm i -g npm@$(cat package.json | jq -r .engines.npm)

- run: npm install
- run: npm run removePolkadotJSWarnings

# build all packages in workspace
- run: npm run build:all
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/tests_protocol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ jobs:
project-cache-${{ runner.os }}-${{ runner.arch }}-

- run: npm install
- run: npm run removePolkadotJSWarnings

- name: Build contracts
id: build
Expand Down
Loading