diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index a010f59c..6b98f15f 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -40,28 +40,3 @@ jobs: # - run: npm run unit env: CI: true - - testwindows: - runs-on: windows-latest - - strategy: - matrix: - node-version: [18.x] - - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - - uses: actions/cache@v1 - with: - path: ~\AppData\Roaming\npm-cache - key: ${{ runner.os }}-node-${{ hashFiles('**\package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - name: Use Node.js ${{ matrix.node-version }} in Windows - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm install - - run: npm run build --if-present