From 7c826ef8812bf2b853e55b248c7d4f646d226318 Mon Sep 17 00:00:00 2001 From: Mark Sinclair Date: Thu, 10 Mar 2022 18:07:08 +0000 Subject: [PATCH] Remove GitHub Action for TS type generation Please generate type manually before committing. --- .github/workflows/nym-wallet-types.yml | 32 -------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/nym-wallet-types.yml diff --git a/.github/workflows/nym-wallet-types.yml b/.github/workflows/nym-wallet-types.yml deleted file mode 100644 index dc1da64dbe..0000000000 --- a/.github/workflows/nym-wallet-types.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Generate TS types - -on: - push: - paths-ignore: - - "explorer/**" - pull_request: - paths-ignore: - - "explorer/**" - -jobs: - nym-wallet-types: - runs-on: [ self-hosted, custom-linux-exoscale ] - # Enable sccache - env: - RUSTC_WRAPPER: /home/ubuntu/.cargo/bin/sccache - if: ${{ github.event_name != 'pull_request' }} - steps: - - name: Prepare - run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev libatk1.0-dev libgdk-pixbuf2.0-dev libsoup2.4-dev librust-gdk-dev libwebkit2gtk-4.0-dev - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - name: Generate TS - run: cd nym-wallet/src-tauri && cargo test - - uses: EndBug/add-and-commit@v7.2.1 # https://github.com/marketplace/actions/add-commit - with: - add: '["nym-wallet"]' - message: "[ci skip] Generate TS types" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}