Skip to content

ci: syntax error

ci: syntax error #10

Workflow file for this run

name: Changed-files
on:
push:
branches:
- '**'
jobs:
changed_files:
runs-on: ubuntu-latest
name: Test changed-files
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get javascore files that have changed
id: changed-files-javascore
uses: tj-actions/changed-files@v39
with:
files_yaml: |
ibc:
- 'contracts/javascore/ibc/**'
lightclients:
- contracts/javascore/lightclients/**
xcall-connection:
- contracts/javascore/xcall-connection/**
- name: Run step if test file(s) change
if: steps.changed-files-javascore.outputs.ibc_any_changed == 'true'
run: |
echo "One or more test file(s) has changed."
echo "List all the files that have changed: ${{ steps.changed-files-javascore.outputs.ibc_all_changed_files }}"
- name: Run step if doc file(s) change
if: steps.changed-files-javascore.outputs.lightclients_any_changed == 'true'
run: |
echo "One or more doc file(s) has changed."
echo "List all the files that have changed: ${{ steps.changed-files-javascore.outputs.lightclients_all_changed_files }}"