Skip to content

Commit

Permalink
Add Windows to the CI OS matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
blomqma committed Mar 24, 2024
1 parent c35d411 commit 81740ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ module.exports = {
extends: ['standard-with-typescript', 'prettier'],
parserOptions: {
project: [
path.resolve(__dirname, './packages/*/tsconfig.json'),
path.resolve(__dirname, './apps/*/tsconfig.json'),
path.resolve(__dirname, './packages/next-rest-framework/tsconfig.json'),
path.resolve(__dirname, './apps/example/tsconfig.json'),
path.resolve(__dirname, './docs/tsconfig.json')
]
},
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ on:
jobs:
build:
name: "Run CI pipeline"
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [18, 20]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
Expand Down

0 comments on commit 81740ad

Please sign in to comment.