Skip to content

adding a line #!usr/bin/env node to executable files #2

adding a line #!usr/bin/env node to executable files

adding a line #!usr/bin/env node to executable files #2

Workflow file for this run

# Name of workflow
name: Node CI
on:
- push
- pull_request
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:

Check failure on line 23 in .github/workflows/codeclimate.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/codeclimate.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: make install
- run: make lint
- run: make test
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true