-
-
Notifications
You must be signed in to change notification settings - Fork 754
27 lines (26 loc) · 657 Bytes
/
check.yml
File metadata and controls
27 lines (26 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
on:
push:
branches:
- 3.x
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-22.04
name: Check Tests
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: testomatio/check-tests@stable
if: github.repository == 'codeceptjs/CodeceptJS' && github.event.pull_request.title == '3.x'
with:
framework: mocha
tests: "./test/**/*_test.js"
token: ${{ secrets.GITHUB_TOKEN }}
has-tests-label: true
comment-on-empty: true
github-pat: ${{ secrets.GH_PAT }}
enable-documentation: true
documentation-branch: "master"