From daf3fcc976c5e021ceef7c3d2a83af632a5634f7 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 15 May 2023 18:01:29 +0200 Subject: [PATCH] Rvert main hiccup. --- .github/workflows/node-lint.yml | 47 --------------------------------- .gitignore | 2 -- 2 files changed, 49 deletions(-) delete mode 100644 .github/workflows/node-lint.yml diff --git a/.github/workflows/node-lint.yml b/.github/workflows/node-lint.yml deleted file mode 100644 index d913843a..00000000 --- a/.github/workflows/node-lint.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Lint -defaults: - run: - working-directory: ./bindings/node/ - -on: - push: - branches: - - main - paths-ignore: - - bindings/python/** - pull_request: - paths-ignore: - - bindings/python/** -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true -jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: 18 - cache-dependency-path: ./bindings/node/ - cache: 'yarn' - - - name: Install - uses: dtolnay/rust-toolchain@stable - with: - components: clippy, rustfmt - - - name: Install dependencies - run: yarn install - - - name: ESLint - run: yarn lint - - - name: Cargo fmt - run: cargo fmt -- --check - - - name: Clippy - run: cargo clippy diff --git a/.gitignore b/.gitignore index c55e02ea..b14a91aa 100644 --- a/.gitignore +++ b/.gitignore @@ -23,5 +23,3 @@ pip-wheel-metadata .vscode *.code-workspace -.yarn/ -*.node