Skip to content

feat: update fsmoothy version #44

feat: update fsmoothy version

feat: update fsmoothy version #44

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
env:
CI: true
- name: Run linter
run: npm run lint
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v4.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm run test:cov
debug: true