Skip to content

chore: fix package name #4

chore: fix package name

chore: fix package name #4

name: TM Helpers CI Pipeline
on:
push:
branches: [main]
paths:
- "node/thing-model/**"
pull_request:
branches: [main]
paths:
- "node/thing-model/**"
workflow_dispatch:
defaults:
run:
working-directory: node/thing-model
jobs:
setup-and-test:
name: Tests (${{ matrix.os }}), Node ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x, 20.x]
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.os }} ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test:coverage
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage/lcov.info
verbose: true