Skip to content

fix: missing DeltaPro device support to DeviceFactory type mapping #35

fix: missing DeltaPro device support to DeviceFactory type mapping

fix: missing DeltaPro device support to DeviceFactory type mapping #35

Workflow file for this run

name: PR Checks
on:
pull_request:
# Least-privilege default for the whole workflow; jobs opt-in to what they need.
permissions: {}
# Cancel superseded runs for the same PR to save resources.
concurrency:
group: pr-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_and_test:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
with:
persist-credentials: false
- name: Setup Node.js 24
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v4
with:
node-version: '24.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test