diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index f3338ba77ea..201a62929b4 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -78,7 +78,7 @@ jobs: - name: Test GitHub Action uses: ./ with: - filepath: github-action/test/asyncapi.yml + filepath: ./github-action/test/asyncapi.yml - name: Assert GitHub Action run: | echo "Listing all files" @@ -110,7 +110,7 @@ jobs: - name: Test GitHub Action uses: ./ with: - filepath: github-action/test/asyncapi.yml + filepath: ./github-action/test/asyncapi.yml command: validate test-custom-command: @@ -165,7 +165,7 @@ jobs: - name: Test GitHub Action uses: ./ with: - filepath: github-action/test/asyncapi.yml + filepath: ./github-action/test/asyncapi.yml output: custom-output - name: Assert GitHub Action run: | diff --git a/bin/act b/bin/act new file mode 100755 index 00000000000..2215960f9e5 Binary files /dev/null and b/bin/act differ diff --git a/github-action/Dockerfile b/github-action/Dockerfile index 3de057242e7..152b4108f0d 100644 --- a/github-action/Dockerfile +++ b/github-action/Dockerfile @@ -16,6 +16,7 @@ RUN mkdir -p /libraries # Copy the lib, bin, node_modules, and package.json files to the /libraries directory RUN cp -r /tmp/source_code/lib /libraries RUN cp -r /tmp/source_code/node_modules /libraries +RUN cp -r /tmp/source_code/assets /libraries RUN cp /tmp/source_code/package.json /libraries RUN cp /tmp/source_code/package-lock.json /libraries