Skip to content

chore(deps): bump

chore(deps): bump #181

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@v4
with:
node-version: 16.x
- name: Checkout submodules
run: 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