Skip to content

Persist socat state

Persist socat state #9

Workflow file for this run

---
name: Build and Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
schedule:
- cron: "17 4 * * 1"
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 20
- name: Configure npm registry
run: |
npm config set @universal-robots:registry https://pkgs.dev.azure.com/polyscopex/api/_packaging/polyscopex/npm/registry/
npm config set strict-ssl false
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Upload artifacts
uses: actions/upload-artifact@v5
with:
name: tool-comm-forwarder-urcapx
path: target/tool-comm-forwarder-*.urcapx
if-no-files-found: error