Skip to content

Changed ci to use windows #31

Changed ci to use windows

Changed ci to use windows #31

name: Integration Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test-with-zephyr:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install system dependencies
run: |
choco install python3 cmake ninja gperf dtc-msys2 wget make gcc-arm-embedded
shell: powershell
- name: Install dependencies
run: npm ci
- name: Compile TypeScript
run: npm run test-compile
- name: Run linting
run: npm run lint
- name: Run real integration tests
run: node scripts/run-integration-tests.js
env:
NODE_ENV: test