From baaa41ae42523977446c4c2c56f716b9d3563d3d Mon Sep 17 00:00:00 2001 From: Juerg B <44573692+juergba@users.noreply.github.com> Date: Mon, 18 Apr 2022 08:18:35 +0200 Subject: [PATCH] chore(ci): ignore changes to docs files (#4871) --- .github/workflows/mocha.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mocha.yml b/.github/workflows/mocha.yml index b30d6016ac..ab4d78a3d1 100644 --- a/.github/workflows/mocha.yml +++ b/.github/workflows/mocha.yml @@ -4,13 +4,12 @@ on: branches: - '**' - '!mochajs.org' + paths-ignore: ['*.md', 'docs/**'] tags-ignore: - '**' pull_request: - types: - - opened - - synchronize - - reopened + types: [opened, synchronize, reopened] + paths-ignore: ['*.md', 'docs/**'] jobs: prevent-double-run: @@ -20,6 +19,7 @@ jobs: if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository steps: - run: 'echo run Tests' + smoke: name: 'Smoke [Node.js v${{ matrix.node }} / ${{ matrix.os }}]' needs: prevent-double-run @@ -118,6 +118,7 @@ jobs: uses: coverallsapp/github-action@master with: github-token: '${{ secrets.GITHUB_TOKEN }}' + test-browser: # TODO: configure to retain build artifacts in `.karma/` dir name: 'Browser Tests'