Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

Commit 122ae60

Browse files
author
Rohith Reddy
committed
add support for F# & close #5
1 parent 48ea7dd commit 122ae60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ function run() {
1313
// find project
1414
const repoDir = process.env.GITHUB_WORKSPACE,
1515
projDir = resolve(repoDir, process.env.INPUT_PROJECT_DIR),
16-
projFiles = readdirSync(projDir).filter(f => f.endsWith(".csproj"))
17-
16+
projFiles = readdirSync(projDir).filter(f => f.endsWith(".csproj") || f.endsWith(".fsproj"))
17+
1818
if (projFiles.length === 0) {
1919
failed("😭 project not found")
2020
return

0 commit comments

Comments
 (0)