Skip to content

Commit 51ffc31

Browse files
committed
explicitly install find dependencies
1 parent 8d7526c commit 51ffc31

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
2929
strategy:
3030
matrix:
31-
site: ["sites/site-with-errors"]
31+
site: ['sites/site-with-errors']
3232
steps:
3333
- name: Checkout
3434
uses: actions/checkout@v6
3535

3636
- name: Setup Ruby
3737
uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5
3838
with:
39-
ruby-version: "3.4"
39+
ruby-version: '3.4'
4040
bundler-cache: true
4141
working-directory: ${{ matrix.site }}
4242

@@ -88,6 +88,13 @@ jobs:
8888
path: ${{ steps.cache_key.outputs.cache_key }}
8989
token: ${{ secrets.GITHUB_TOKEN }}
9090

91+
# - if we need to do the same to file/fix in the future
92+
# we can add separate steps
93+
- name: Install 'find' dependencies
94+
shell: bash
95+
working-directory: .github/actions/find
96+
run: npm ci
97+
9198
- name: Validate scan results (${{ matrix.site }})
9299
run: |
93100
npm ci

0 commit comments

Comments
 (0)