From 72bedac86473b1da78a75a7ed813f74b4b978a25 Mon Sep 17 00:00:00 2001 From: Sebastien Rousseau Date: Sun, 8 Oct 2023 12:09:31 +0100 Subject: [PATCH] Delete .github/workflows/coveralls.yml --- .github/workflows/coveralls.yml | 58 --------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 .github/workflows/coveralls.yml 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