Skip to content

Step name not displayed correctly in log viewer when using node-version #60

Closed
@sekhavati

Description

@sekhavati

Hi there! I have a basic workflow defined as below but within the Actions log viewer the step name is not correctly formatted when trying to substitute the node-version into it.

If this isn't the correct place to post such issues feel free to point me in the right direction. Really liking GitHub Actions so far though!!

Screenshot 2019-09-14 at 11 16 38 am

name: continuous-integration

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [10.x]

    steps:
      - name: Checkout source code
        uses: actions/checkout@v1

      - name: Setup Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v1
        with:
          node-version: ${{ matrix.node-version }}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions