Skip to content

asciinema

asciinema #5

Workflow file for this run

name: Node CI
on:
- push
- pull_request
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
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.0.0
env:
CODECLIMATE: ${{ secrets.CODECLIMATE }}
with:
coverageCommand: make test-coverage
debug: true