File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 workflow_dispatch :
77
88jobs :
9- unit-tests :
10- if : github.repository == 'devlikeapro/waha-plus'
11- runs-on : ubuntu-22.04
12- name : Unit tests
13- steps :
14- - name : Checkout
15- uses : actions/checkout@v4
16- with :
17- fetch-depth : 0
18-
19- - name : Set up Node
20- uses : actions/setup-node@v4
21- with :
22- node-version : 22
23-
24- - name : Enable Corepack
25- run : |
26- corepack enable
27- corepack prepare yarn@4.9.2 --activate
28-
29- - name : Install dependencies
30- run : |
31- unset GIT_CONFIG_PARAMETERS
32- yarn install --immutable
33-
34- - name : Run unit tests
35- run : yarn test:unit
9+ # unit-tests:
10+ # if: github.repository == 'devlikeapro/waha-plus'
11+ # runs-on: ubuntu-22.04
12+ # name: Unit tests
13+ # steps:
14+ # - name: Checkout
15+ # uses: actions/checkout@v4
16+ # with:
17+ # fetch-depth: 0
18+ #
19+ # - name: Set up Node
20+ # uses: actions/setup-node@v4
21+ # with:
22+ # node-version: 22
23+ #
24+ # - name: Enable Corepack
25+ # run: |
26+ # corepack enable
27+ # corepack prepare yarn@4.9.2 --activate
28+ #
29+ # - name: Install dependencies
30+ # run: |
31+ # unset GIT_CONFIG_PARAMETERS
32+ # yarn install --immutable
33+ #
34+ # - name: Run unit tests
35+ # run: yarn test:unit
3636
3737 docker-build :
3838 if : github.repository == 'devlikeapro/waha-plus'
39- needs : unit-tests
39+ # needs: unit-tests
4040 runs-on : ${{ matrix.runner }}
4141 name :
4242 ${{ matrix.engine }} - ${{ matrix.browser }} - ${{ matrix.platform }} -
You can’t perform that action at this time.
0 commit comments