diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 3d7b943..0000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,44 +0,0 @@ ---- - -name: coverage - -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - name: coverage - - strategy: - matrix: - node-version: [16.x] - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Setup Node ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - always-auth: false - node-version: ${{ matrix.node-version }} - - - name: Run npm install - run: npm install - - - name: Run Tests - run: npm run test:coverage - - - name: Generate LCOV - run: npm run coveralls - - - name: Update Coveralls - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - if: success() diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml deleted file mode 100644 index 407f53e..0000000 --- a/.github/workflows/linting.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- - -name: Linting and Types - -on: - pull_request: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - name: Linting and Types - - strategy: - matrix: - node-version: [16.x] - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Setup Node ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - always-auth: false - node-version: ${{ matrix.node-version }} - - - name: Run npm install - run: npm install - - - name: Run lint:everything - run: npm run lint:everything diff --git a/README.md b/README.md index d7c542b..3259578 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@