forked from haskell/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request haskell#5 from haskell/updates
Address most of the outstanding issues left over from the actions/setup-haskell -> haskell/actions/setup migration.
- Loading branch information
Showing
12 changed files
with
10,378 additions
and
2,751 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
module.exports = { | ||
'!(*test).{js,ts}': 'eslint --cache --fix', | ||
'!(*test).ts': () => ['ncc build', 'git add dist'], | ||
'src/**/*.ts': () => 'tsc -p tsconfig.json', | ||
'*.{js,ts,json,md}': 'prettier --write' | ||
'setup/!(*test).{js,ts,json}': [ | ||
'eslint --cache --fix', | ||
() => 'ncc build', | ||
() => 'git add dist' | ||
], | ||
'setup/src/**/*.ts': () => 'tsc -p tsconfig.json', | ||
'setup/*.{js,ts,json,md}': 'prettier --write' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.