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

Make http requests cancelable #512

Closed
wants to merge 3 commits into from
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug.md

This file was deleted.

24 changes: 0 additions & 24 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/research-design.md

This file was deleted.

31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/user-story.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
analyse:
name: Analyse
runs-on: self-hosted
runs-on: ubuntu-latest

steps:
- name: Checkout repository
Expand Down
60 changes: 0 additions & 60 deletions .github/workflows/deploy_edge.yml

This file was deleted.

23 changes: 10 additions & 13 deletions .github/workflows/deploy_website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
jobs:
publish-website:
publish-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -18,20 +18,17 @@ jobs:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm install
- run: npm run lerna -- bootstrap
- run: npm run lerna run build
- run: cd website && cp -R build/. ../dist
- run: npm run build-docs
- run: npm run netlify:publish
- run: cd dist && touch .nojekyll && echo 'tezostaquito.io' > CNAME
- name: Publish generated content to GitHub Pages
uses: tsunematsu21/[email protected]
with:
dir: dist
branch: gh-pages
token: ${{ secrets.ACCESS_TOKEN }}
env:
CI: true
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_USERNAME: Taquito Notifications
SLACK_ICON: https://imgur.com/1zlqzFu
SLACK_TITLE: Message
SLACK_MESSAGE: A new version of the Taquito website has been published. https://tezostaquito.netlify.app
38 changes: 11 additions & 27 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
name: Node.js CI

on:
pull_request:
push:
branches:
- master
on: [push]
jobs:
lint-and-test:
runs-on: self-hosted
strategy:
matrix:
node: [12.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
node-version: 10.x
- uses: actions/cache@v1
with:
path: ~/.npm
Expand All @@ -26,22 +19,18 @@ jobs:
- run: npm run lerna -- bootstrap
- run: npm run build
- run: npm run lint
- run: npm run build-docs
- run: npm run test -- --runInBand
- uses: codecov/codecov-action@v1
with:
file: .coverage/*.json
env:
CI: true
RUN_INTEGRATION: true
TEZOS_RPC_EDONET: ${{ secrets.TEZOS_RPC_EDONET }}
TEZOS_RPC_FLORENCENET: ${{ secrets.TEZOS_RPC_FLORENCENET }}

integration-tests-edonet:
runs-on: self-hosted
integration-tests-carthagenet:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12.x]
node: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -56,17 +45,14 @@ jobs:
- run: npm ci
- run: npm run lerna -- bootstrap
- run: npm run build
- run: cd integration-tests && npm run test:edonet -- --maxWorkers=8
- run: cd integration-tests && npm run test:carthagenet
env:
CI: true
TEZOS_RPC_EDONET: ${{ secrets.TEZOS_RPC_EDONET }}
TEZOS_RPC_FLORENCENET: ${{ secrets.TEZOS_RPC_FLORENCENET }}

integration-tests-florencenet:
runs-on: self-hosted
integration-tests-delphinet:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12.x]
node: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -81,8 +67,6 @@ jobs:
- run: npm ci
- run: npm run lerna -- bootstrap
- run: npm run build
- run: cd integration-tests && npm run test:florencenet -- --maxWorkers=8
- run: cd integration-tests && npm run test:delphinet
env:
CI: true
TEZOS_RPC_EDONET: ${{ secrets.TEZOS_RPC_EDONET }}
TEZOS_RPC_FLORENCENET: ${{ secrets.TEZOS_RPC_FLORENCENET }}
50 changes: 0 additions & 50 deletions .github/workflows/preview_website.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,3 @@ compiled
website/build/
manifest.json
!.vscode/extensions.json
website/*.bak
integration-tests/jest-stare
packages/taquito/src/version.ts
packages/taquito-beacon-wallet/src/version.ts
packages/taquito-http-utils/src/version.ts
packages/taquito-ledger-signer/src/version.ts
packages/taquito-local-forging/src/version.ts
packages/taquito-michel-codec/src/version.ts
packages/taquito-michelson-encoder/src/version.ts
packages/taquito-remote-signer/src/version.ts
packages/taquito-rpc/src/version.ts
packages/taquito-signer/src/version.ts
packages/taquito-tezbridge-signer/src/version.ts
packages/taquito-tezbridge-wallet/src/version.ts
packages/taquito-tzip12/src/version.ts
packages/taquito-tzip16/src/version.ts
packages/taquito-utils/src/version.ts
2 changes: 0 additions & 2 deletions @nodes/alltypes.d.ts

This file was deleted.

Loading