Build(deps): Bump cross-spawn in the npm_and_yarn group #4675
This file contains 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: Windows Build | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node: ["22"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Lint | |
run: pnpm run lint | |
- name: Build | |
if: github.ref == 'refs/heads/main' | |
run: pnpm run build | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Build | |
if: github.ref != 'refs/heads/main' | |
run: pnpm run build --publish=never | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
name: Upload Installer | |
with: | |
name: WeakAuras-Companion-CI-Installer | |
path: release/**/*Setup*.exe |