-
Notifications
You must be signed in to change notification settings - Fork 2
Add additional CI checks #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
dcf6031
add lint and prettier checks
leeland-turnkey 8542015
add build check for subfolders with webpack
leeland-turnkey d7b5f48
run all jobs to completion even if one fails
leeland-turnkey 5329d5d
Fix all format checks for the repos. Will not do a npm run build unti…
leeland-turnkey b13d756
add the rest of the format changes
leeland-turnkey b3d04bc
run npm run build on import and export-and-sign subfolders
leeland-turnkey 0e8e336
run npm run build on import and export-and-sign subfolders
leeland-turnkey e24319e
add prettier and linting to all sub folders. Change node version to 2…
leeland-turnkey e61f332
Fix all linting errors. Also adding in a different way of checking bu…
leeland-turnkey 8ec7bcc
add eslint to auth folder. Fix formatting and lint errors and rebuild…
leeland-turnkey 3729b4b
needed to add the rest of the code from the root
leeland-turnkey 4d4ddbf
add git check using git status --porcelain
leeland-turnkey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,17 @@ | ||
| # Vendored files | ||
| noble-hashes.js | ||
| noble-ed25519.js | ||
| hpke-core.js | ||
|
|
||
| # Built | ||
| dist/ | ||
| build/ | ||
| out/ | ||
| *.min.js | ||
| *.min.css | ||
| *.bundle.js | ||
| coverage/ | ||
| .next/ | ||
| .cache/ | ||
| node_modules/ | ||
|
|
This file contains hidden or 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,18 @@ | ||
| { | ||
| "env": { | ||
| "browser": true, | ||
| "es2021": true, | ||
| "node": true, | ||
| "jest": true | ||
| }, | ||
| "extends": ["eslint:recommended"], | ||
| "parserOptions": { | ||
| "ecmaVersion": "latest", | ||
| "sourceType": "module" | ||
| }, | ||
| "rules": { | ||
| "no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }], | ||
| "no-console": "warn" | ||
| } | ||
| } | ||
|
|
This file contains hidden or 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,19 @@ | ||
| name: "Git check" | ||
| description: "Git sanity checks" | ||
|
|
||
| runs: | ||
| using: "composite" | ||
|
|
||
| steps: | ||
| - name: Is Git clean? | ||
| run: | | ||
| if [ -z "$( git status --porcelain )" ]; then | ||
| echo "Git is clean!" | ||
| exit 0 | ||
| else | ||
| echo "Git is dirty!" | ||
| git add -A | ||
| git --no-pager diff HEAD | ||
| exit 1 | ||
| fi | ||
| shell: bash |
This file contains hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.