-
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.
- Loading branch information
Showing
82 changed files
with
9,617 additions
and
36,020 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
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 |
---|---|---|
|
@@ -2,24 +2,10 @@ name: Build Pull Request | |
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/**/*' | ||
- '.eslintrc.json' | ||
- 'gulpfile.ts' | ||
- 'tsconfig.json' | ||
- 'bin/**/*' | ||
- 'config/**/*' | ||
- 'src/**/*' | ||
- 'templates/**/*' | ||
- 'test/**/*' | ||
- 'package.json' | ||
- 'package-lock.json' | ||
|
||
jobs: | ||
build: | ||
name: Build and Test | ||
uses: tyler-technologies-oss/forge-automation-shared/.github/workflows/[email protected] | ||
with: | ||
TESTS_ENABLED: true | ||
name: Build | ||
uses: tyler-technologies-oss/forge-automation-shared/.github/workflows/[email protected] | ||
secrets: | ||
NPM_TOKEN: ${{ secrets.FORGE_NPM_TOKEN }} |
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,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx --no-install commitlint --edit "$1" |
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,4 +1 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run lint |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env node | ||
'use strict'; | ||
|
||
process.title = 'forge'; | ||
|
||
import { fileURLToPath } from 'url'; | ||
import { run } from '../dist/index.js'; | ||
|
||
run(process, fileURLToPath(import.meta.url)); |
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,7 +1,7 @@ | ||
module.exports = { | ||
export default { | ||
extends: ['@commitlint/config-conventional'], | ||
rules: { | ||
"header-max-length": [0, 'always', 100], | ||
"footer-max-line-length": [0, 'always', 100] | ||
'header-max-length': [0, 'always', 100], | ||
'footer-max-line-length': [0, 'always', 100] | ||
} | ||
}; |
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.