question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Formatting for node-version matrix not working

See original GitHub issue

I just setup GH Actions using the Nodejs recommended workflow and when using the node-version matrix it doesn’t format the name of the version it’s using properly:

image

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:1
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

5reactions
sondr3commented, Aug 26, 2019

For what it’s worth, here is my nodejs.yml file:

name: Main

on: [push]

jobs:
  run:
    name: Run

    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: [10.x, 12.x]

    steps:
    - uses: actions/checkout@v1
    - name: Use Node.js ${{ matrix.node-version }}
      uses: actions/setup-node@v1
      with:
        node-version: ${{ matrix.node-version }}
        
    - name: install and build
      run: |
        npm ci
        npm run build
      env:
        CI: true
 
    - name: lint
      run: |
        npm run lint
        npm run style
            
    - name: test
      run: npm test
      env:
        CI: true
2reactions
chrispatcommented, Sep 13, 2019

This issue is fixed in the orchestrator and will rollout in a coming update.

Read more comments on GitHub >

github_iconTop Results From Across the Web

ng --version showing The current version of Node (16.8.0) is ...
I just installed the latest version of node(16.8) using nvm and angular/cli(12.2). It shows the following: Warning: The current version of Node ......
Read more >
Node.js Compatibility Requirements - Datadog Docs
Versioning of the Datadog Node.js tracing library follows semver. When a new major version is released it becomes the primary release line, where...
Read more >
Matrix conditional formatting issue with the +/- b...
Any collapsed node (Node showing + button and having bold text) is a Subtotal, and thus can't have Conditional Formatting.
Read more >
Errors | Node.js v19.3.0 Documentation
All JavaScript and system errors raised by Node.js inherit from, or are instances of, ... This will not work because the callback function...
Read more >
Arrow function expressions - JavaScript - MDN Web Docs
Returning object literals using the concise body syntax (params) => { object: literal } does not work as expected.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found