Skip to content

Commit

Permalink
ci: fix build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
niieani committed Nov 4, 2024
1 parent 9b4b01e commit 6365360
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
Expand All @@ -41,7 +41,7 @@ jobs:
if: github.actor != 'github-actions[bot]' && github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' || github.ref == 'refs/heads/beta')
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
Expand Down
5 changes: 1 addition & 4 deletions tsconfig-cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,5 @@
"verbatimModuleSyntax": false,
"moduleResolution": "Node"
},
"exclude": [
"src/codegen/generateByModel.ts",
"src/codegen/generateJsEncodings.ts"
]
"exclude": ["src/codegen"]
}

0 comments on commit 6365360

Please sign in to comment.