Skip to content

Commit a513dd0

Browse files
use checkout
1 parent d2b2829 commit a513dd0

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/actions/xcode-setup/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ inputs:
1616
runs:
1717
using: 'composite'
1818
steps:
19-
- uses: actions/checkout@v6
2019
- uses: actions/setup-node@v6
2120
with:
2221
node-version: ${{ inputs.node_version }}

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version: ${{ fromJSON(needs.node_matrix.outputs.versions) }}
16-
runs-on: macos-latest
16+
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v6
1919
- uses: actions/setup-node@v6

.github/workflows/wda-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ jobs:
115115
matrix:
116116
config: ${{ fromJSON(needs.build_matrix.outputs.matrix) }}
117117
steps:
118+
- uses: actions/checkout@v6
118119
- uses: ./.github/actions/xcode-setup
119120
with:
120121
node_version: ${{ env.DEFAULT_NODE_VERSION }}
@@ -142,6 +143,7 @@ jobs:
142143
matrix:
143144
config: ${{ fromJSON(needs.analyze_matrix.outputs.matrix) }}
144145
steps:
146+
- uses: actions/checkout@v6
145147
- uses: ./.github/actions/xcode-setup
146148
with:
147149
node_version: ${{ env.DEFAULT_NODE_VERSION }}
@@ -167,6 +169,7 @@ jobs:
167169
matrix:
168170
config: ${{ fromJSON(needs.unit_test_matrix.outputs.matrix) }}
169171
steps:
172+
- uses: actions/checkout@v6
170173
- uses: ./.github/actions/xcode-setup
171174
with:
172175
node_version: ${{ env.DEFAULT_NODE_VERSION }}
@@ -191,6 +194,7 @@ jobs:
191194
matrix:
192195
config: ${{ fromJSON(needs.integration_test_matrix.outputs.matrix) }}
193196
steps:
197+
- uses: actions/checkout@v6
194198
- uses: ./.github/actions/xcode-setup
195199
with:
196200
node_version: ${{ env.DEFAULT_NODE_VERSION }}

0 commit comments

Comments
 (0)