Commit 35ea780

Anton Medvedev <anton@medv.io>
2022-06-27 23:52:54
Only test win32 on windows-latest
1 parent 7c4fba6
Changed files (1)
.github
workflows
.github/workflows/test.yml
@@ -25,18 +25,14 @@ jobs:
   test-win32:
     runs-on: windows-latest
 
-    strategy:
-      matrix:
-        node-version: [16.x, 18.x]
-
     steps:
       - uses: actions/checkout@v3
-      - name: Use Node.js ${{ matrix.node-version }}
+      - name: Use Node.js 16.x
         uses: actions/setup-node@v3
         with:
-          node-version: ${{ matrix.node-version }}
+          node-version: 16.x
       - run: npm i
-      - run: npx uvu test -i fixtures
+      - run: npx uvu test win32
         timeout-minutes: 1
         env:
           FORCE_COLOR: 3