We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8adf934 commit 332c8acCopy full SHA for 332c8ac
.github/workflows/ci.yml
@@ -81,6 +81,10 @@ jobs:
81
test_on_windows:
82
name: Test on Windows
83
runs-on: windows-latest
84
+ strategy:
85
+ matrix:
86
+ node-version: [20.x]
87
+
88
steps:
89
- name: Checkout the source code
90
uses: actions/checkout@v2
@@ -102,6 +106,17 @@ jobs:
102
106
env:
103
107
RUSTFLAGS: -Dwarnings
104
108
109
+ - name: Use Node.js ${{ matrix.node-version }}
110
+ uses: actions/setup-node@v3
111
+ with:
112
+ node-version: ${{ matrix.node-version }}
113
114
+ - name: Build frontend for testing
115
+ run: |
116
+ npm ci
117
+ npm run build
118
+ working-directory: ./site/frontend
119
105
120
- name: Run unit tests
121
run: cargo test --all
122
0 commit comments