Skip to content

Commit 90229db

Browse files
committed
Disable everything except for docserver
1 parent 759a012 commit 90229db

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

.github/workflows/pull-request.yml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -56,41 +56,41 @@ jobs:
5656
docserver: ${{ steps.info.outputs.docserver }}
5757
workflows: ${{ steps.info.outputs.workflows }}
5858

59-
libraries:
60-
needs: find-packages
61-
strategy:
62-
fail-fast: false
63-
matrix:
64-
lib: ${{ fromJson(needs.find-packages.outputs.libs) }}
65-
os: ['ubuntu-latest', 'windows-latest']
66-
runs-on: ${{ matrix.os }}
67-
defaults:
68-
run:
69-
shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
70-
71-
name: ${{ matrix.lib.name }} library (${{ matrix.os }})
59+
# libraries:
60+
# needs: find-packages
61+
# strategy:
62+
# fail-fast: false
63+
# matrix:
64+
# lib: ${{ fromJson(needs.find-packages.outputs.libs) }}
65+
# os: ['ubuntu-latest', 'windows-latest']
66+
# runs-on: ${{ matrix.os }}
67+
# defaults:
68+
# run:
69+
# shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
7270

73-
steps:
74-
- name: Check out source code
75-
if: matrix.lib.changes
76-
uses: actions/checkout@v4
71+
# name: ${{ matrix.lib.name }} library (${{ matrix.os }})
7772

78-
- name: Initialize Repo
79-
if: matrix.lib.changes
80-
uses: ./.github/actions/src/init
81-
with:
82-
package-name: ${{ matrix.lib.name }}
83-
playwright: ${{ matrix.lib.changes && matrix.lib.needsPlaywright }}
84-
shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
73+
# steps:
74+
# - name: Check out source code
75+
# if: matrix.lib.changes
76+
# uses: actions/checkout@v4
8577

86-
# Only thing we really need to do on Windows is run tests
87-
- name: Run Tests
88-
if: matrix.lib.changes
89-
run: yarn workspaces foreach -A --include ${{ matrix.lib.name }} run test --coverage
78+
# - name: Initialize Repo
79+
# if: matrix.lib.changes
80+
# uses: ./.github/actions/src/init
81+
# with:
82+
# package-name: ${{ matrix.lib.name }}
83+
# playwright: ${{ matrix.lib.changes && matrix.lib.needsPlaywright }}
84+
# shell: ${{ matrix.os == 'windows-latest' && 'pwsh' || 'bash' }}
85+
86+
# # Only thing we really need to do on Windows is run tests
87+
# - name: Run Tests
88+
# if: matrix.lib.changes
89+
# run: yarn workspaces foreach -A --include ${{ matrix.lib.name }} run test --coverage
9090

91-
- name: Run Auxillary Tasks
92-
if: matrix.lib.changes && matrix.os == 'ubuntu-latest'
93-
run: yarn workspaces foreach -A --include ${{ matrix.lib.name }} run tsc
91+
# - name: Run Auxillary Tasks
92+
# if: matrix.lib.changes && matrix.os == 'ubuntu-latest'
93+
# run: yarn workspaces foreach -A --include ${{ matrix.lib.name }} run tsc
9494

9595
# tabs:
9696
# runs-on: ubuntu-latest
@@ -230,12 +230,12 @@ jobs:
230230
name: Docs Server Tasks
231231
runs-on: ubuntu-latest
232232
needs:
233-
- libraries
233+
# - libraries
234234
- find-packages
235235

236236
steps:
237237
- name: Echo Information
238-
run: echo ${{ needs.find-packages.outputs.docserver.changes }}
238+
run: echo ${{ needs.find-packages.outputs.docserver }}
239239

240240
- name: Check out source code
241241
uses: actions/checkout@v4

0 commit comments

Comments
 (0)