Skip to content

build(deps-dev): bump @semantic-release/github from 10.0.2 to 10.0.3 … #2846

build(deps-dev): bump @semantic-release/github from 10.0.2 to 10.0.3 …

build(deps-dev): bump @semantic-release/github from 10.0.2 to 10.0.3 … #2846

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18", "16"]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run test
- run: npm run build
- name: Code Climate Coverage Action
uses: paambaati/codeclimate-action@v6.0.0
env:
CC_TEST_REPORTER_ID: 3c9c36dc44d794c8a3f398889936100a4df2b6913e5388ab824effed6cefcc31
with:
coverageCommand: npm run coverage
- run: npm run test:npm