Skip to content

Commit

Permalink
meta: replace build-windows for test-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
H4ad committed Nov 2, 2023
1 parent 401ea75 commit b5bca61
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Build Windows
name: Test Windows

on:
pull_request:
paths-ignore:
- README.md
- .github/**
- '!.github/workflows/build-windows.yml'
- '!.github/workflows/test-windows.yml'
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
Expand All @@ -16,7 +16,7 @@ on:
paths-ignore:
- README.md
- .github/**
- '!.github/workflows/build-windows.yml'
- '!.github/workflows/test-windows.yml'

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -45,9 +45,13 @@ jobs:
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install deps
run: choco install nasm
- name: Environment Information
run: npx envinfo
- name: Install deps
run: choco install nasm
- name: Build
run: ./vcbuild.bat
- name: Test
run: ./vcbuild.bat release noprojgen nobuild ignore-flaky test-ci-js
env:
test_ci_args: -p actions --node-args=--test-reporter=spec --node-args=--test-reporter-destination=stdout --measure-flakiness 9

0 comments on commit b5bca61

Please sign in to comment.