Changed ci to use windows #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |