Skip to content

Commit

Permalink
Merge pull request #581 from serenity-js/fix/windows
Browse files Browse the repository at this point in the history
Demonstrate support for Windows (serenity-js/serenity-js#2060)
  • Loading branch information
jan-molak authored Nov 11, 2023
2 parents 029fd4e + 5cc6085 commit a1ec7bd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [ 18.x, 20.x ]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -30,7 +32,7 @@ jobs:
CI: true
- name: GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.4.3
if: matrix.node-version == '18.x' && github.ref == 'refs/heads/main'
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '18.x' && github.ref == 'refs/heads/main'
with:
BRANCH: gh-pages
FOLDER: target/site/serenity
Expand Down

0 comments on commit a1ec7bd

Please sign in to comment.