Skip to content

Commit 57d8c72

Browse files
committed
ci: added windows runner to pr workflow
Signed-off-by: Tomer Figenblat <[email protected]>
1 parent 18cf5e0 commit 57d8c72

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ permissions:
1616
jobs:
1717
code:
1818
strategy:
19+
fail-fast: false
1920
matrix:
2021
node: ['20', 'latest']
21-
os: [ubuntu-latest, macos-latest]
22+
os: [ubuntu-latest, macos-latest, windows-latest]
2223
runs-on: ${{ matrix.os }}
2324
name: "Test project { os: ${{ matrix.os }}, node: ${{ matrix.node }} }"
2425
steps:

tests/bumper.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ suite('Test automatic bumps', () => {
6161
let nonGit = path.join(workspace, 'non-git')
6262
shell.mkdir('-p', nonGit)
6363

64-
return expect(bumperSut({source: 'git', bump: 'auto', preset: 'angular', path: nonGit}))
64+
return expect(bumperSut({source: 'git', bump: 'auto', label: '-alpha1',preset: 'angular', path: nonGit}))
6565
.to.eventually.be.rejectedWith(`${nonGit} is not a git repository`)
6666
})
6767

0 commit comments

Comments
 (0)