Skip to content

fix: windows npm install (#132) #196

fix: windows npm install (#132)

fix: windows npm install (#132) #196

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
node-version:
- "18"
- "20"
- "22"
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm i -g bower
- run: npm ci
- run: npm run static
- run: npm test
- run: npm run build