diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml deleted file mode 100644 index 5c15537..0000000 --- a/.github/workflows/coveralls.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: "Coveralls" - -on: - pull_request: - branches: - - "*" - push: - branches: - - "*" - -jobs: - job: - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v2 - with: - persist-credentials: false - - - name: Setup Node.js 16 - uses: actions/setup-node@v2 - with: - node-version: 16 - - - name: Install yarn dependencies - run: | - yarn install - yarn global add pnpm - pnpm install --frozen-lockfile --ignore-scripts - - # - name: Run lint fix - # run: | - # yarn run lint:fix - - - name: Run prettier - run: | - npx prettier --write src/**/*.ts - - # - name: Run remark - # run: | - # yarn run markdown - - - name: Building - run: | - npx tsc --build tsconfig.json && pnpm run copy && pnpm run filesize:distribution - - - name: Testing & Coverage - run: | - npx pnpm jest --coverage --config jest.config.js - - - name: Coveralls - uses: coverallsapp/github-action@master - with: - base-path: / - flag-name: pm2md - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel: true - path-to-lcov: ./coverage/lcov.info