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

chore: verify ts type defs with eslint #15

Merged
merged 2 commits into from
Jul 27, 2022
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ jobs:
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- run: cargo fmt --all -- --check
- run: cargo clippy --release --all-features --target wasm32-unknown-unknown
- run: cargo clippy --release --all-features --target wasm32-unknown-unknown -- --deny warnings
- run: wasm-pack test --node --release --all-features
- name: Install node_modules
run: yarn install --immutable
- run: yarn workspaces foreach -vpt run build
- run: yarn workspaces foreach -vpt run test
- run: yarn workspaces foreach -vpt run lint
- uses: actions/upload-artifact@v3
with:
name: mina-singer-wasm-package
Expand Down
5 changes: 5 additions & 0 deletions examples/integration_tests/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require("@rushstack/eslint-patch/modern-module-resolution");

module.exports = {
extends: "@chainsafe",
};
236 changes: 0 additions & 236 deletions examples/integration_tests/client.spec.js

This file was deleted.

Loading