Skip to content

Commit 3948347

Browse files
committed
Start converting the GitHub workflow
The `setup-git-for-windows-sdk` Action needs to run on Windows, for one... Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 1f0d06e commit 3948347

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@ name: 'build-test'
22
on: # rebuild any PRs and main branch changes
33
pull_request:
44
push:
5+
tags:
56
branches:
67
- main
7-
- 'releases/*'
8+
- 'v[0-9]*'
89

910
jobs:
1011
build: # make sure build/ci work properly
11-
runs-on: ubuntu-latest
12+
runs-on: windows-latest
1213
steps:
1314
- uses: actions/checkout@v2
1415
- run: |
1516
npm install
1617
- run: |
1718
npm run all
1819
test: # make sure the action works on a clean machine without building
19-
runs-on: ubuntu-latest
20+
runs-on: windows-latest
2021
steps:
2122
- uses: actions/checkout@v2
2223
- uses: ./

0 commit comments

Comments
 (0)