Skip to content

Bump glob from 10.4.5 to 10.5.0 (#1091) #1103

Bump glob from 10.4.5 to 10.5.0 (#1091)

Bump glob from 10.4.5 to 10.5.0 (#1091) #1103

Workflow file for this run

name: Run tests
on:
[push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: Test new SVG files
steps:
- uses: actions/checkout@v6
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v47
with:
files: |
images/svg/**.svg
- name: List all changed SVG files
env:
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
for file in ${CHANGED_FILES}; do
echo "$file was changed"
done
- uses: actions/setup-node@v6
- run: npm install
- run: npm test
env:
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}