Skip to content

chore(deps): bump

chore(deps): bump #176

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches: [ main ]
tags-ignore:
- '**'
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Checkout submodules
uses: srt32/git-actions@v0.0.3
with:
args: git submodule update --init --recursive
- run: npm ci
- run: npm run build
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: npm run coverage
coverageLocations: ${{github.workspace}}/coverage/lcov.info:lcov
debug: true