Skip to content

npm(deps-dev): bump @types/node from 24.3.0 to 24.3.1 #6

npm(deps-dev): bump @types/node from 24.3.0 to 24.3.1

npm(deps-dev): bump @types/node from 24.3.0 to 24.3.1 #6

Workflow file for this run

# CI workflow to build and test
name: CI Build & Test
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- platform: x86
os: windows-latest
toolchain: stable
- platform: x64
os: windows-latest
toolchain: stable
- platform: arm64
os: windows-11-arm
toolchain: stable
steps:
- uses: actions/checkout@v5
- uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: ${{matrix.platform}}
- uses: ./
with:
vs-architecture: ${{matrix.platform}}
- name: Check MASM ${{matrix.platform}} Path
run: |
if ("${{matrix.platform}}" -eq "x64") {
$ml64Path = Get-Command ml64.exe -ErrorAction SilentlyContinue
if ($ml64Path) {
Write-Output "ml64.exe found in PATH: $($ml64Path.Source)"
} else {
Write-Error "ml64.exe not found in PATH."
exit 1
}
} elseif ("${{matrix.platform}}" -eq "x86") {
$mlPath = Get-Command ml.exe -ErrorAction SilentlyContinue
if ($mlPath) {
Write-Output "ml.exe found in PATH: $($mlPath.Source)"
} else {
Write-Error "ml.exe not found in PATH."
exit 1
}
} elseif ("${{matrix.platform}}" -eq "arm64") {
$mlPath = Get-Command armasm64.exe -ErrorAction SilentlyContinue
if ($mlPath) {
Write-Output "armasm64.exe found in PATH: $($mlPath.Source)"
} else {
Write-Error "armasm64.exe not found in PATH."
exit 1
}
} else {
Write-Error "Unknown platform ${{matrix.platform}} - no assembler configured for testing in PATH."
exit 1
}