Skip to content

Error: Param project_path does not exist #79

@mazemax

Description

@mazemax

Summary:
Getting Error: Param project_path does not exist when trying to execute this Github Action.

Github Action File:

name: Fast TypeScript Analyzer
# test on pull request
on:
  pull_request:

permissions:
  contents: read

env:
  ACTIONS_STEP_DEBUG: true

jobs:
  test-typescript:
    name: TypeScript Tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        id: checkout
        uses: actions/checkout@v4
      - name: Env variables
        id: output-env
        run: echo -e "${{ github.workspace }}"
      - name: FTA GitHub Action
        id: fta-action
        uses: exiguus/fta-github-action@v0.1.1
        with:
          project_path: ${{ github.workspace }}
          config_path: fta.config.json
      - name: Print Output Summary
        id: output-summary
        run: echo -e "\nSummary:\n${{ steps.fta-action.outputs.summary }}"

      - name: Print Output Details
        id: output-details
        run: echo -e "\nDetails:\n${{ steps.fta-action.outputs.details }}"

      - name: Upload Output Summary
        id: upload-output
        uses: actions/upload-artifact@v4
        with:
          name: output
          path: output.json

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions