Skip to content

Commit

Permalink
#97 add npm i test for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
easingthemes committed Oct 9, 2023
1 parent 8054cef commit b99ac83
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, windows-latest]
node-version: [16.x]

steps:
Expand All @@ -29,3 +29,22 @@ jobs:
run: npm run build --if-present
- name: Run Tests
run: npm test --if-present

install:

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

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [16.x]

steps:
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Init npm
run: npm init -y
- name: Install package
run: npm i @netcentric/fe-build

0 comments on commit b99ac83

Please sign in to comment.