Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-request-signature-validation
Browse files Browse the repository at this point in the history
  • Loading branch information
chapati23 authored Jul 26, 2024
2 parents cc89d9d + 238f405 commit e6e7e12
Show file tree
Hide file tree
Showing 6 changed files with 463 additions and 81 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Trunk Check
on: [push]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions: read-all

jobs:
trunk-check:
runs-on: ubuntu-latest
permissions:
checks: write # For trunk to post annotations
contents: read # For repo checkout
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- uses: trunk-io/trunk-action@v1
with:
check-mode: all
19 changes: 9 additions & 10 deletions .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,24 @@ lint:
- trivy
- markdown-table-prettify
enabled:
- oxipng@9.1.2
- pre-commit-hooks@4.6.0
- shellcheck@0.10.0
- shfmt@3.6.0
- actionlint@1.7.1
- checkov@3.2.198
- dotenv-linter@3.3.0
- terraform@1.1.0
- dustilock@1.2.0
- eslint@9.7.0
- git-diff-check
- gitleaks@8.18.4
- markdown-link-check@3.12.2
- pre-commit-hooks@4.6.0
- sort-package-json@2.10.0
- terrascan@1.19.1
- checkov@3.2.198
- git-diff-check
- markdownlint@0.41.0
- osv-scanner@1.8.2
- oxipng@9.1.2
- pre-commit-hooks@4.6.0
- prettier@3.3.3
- shellcheck@0.10.0
- shfmt@3.6.0
- sort-package-json@2.10.0
- terraform@1.1.0
- terrascan@1.19.1
- tflint@0.52.0
- trufflehog@3.80.1
- yamllint@1.35.1
Expand Down
6 changes: 5 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ export default tseslint.config(
...tseslint.configs.strictTypeChecked,
...tseslint.configs.stylisticTypeChecked,
{
ignores: ["commitlint.config.mjs", "eslint.config.mjs"],
files: ["**/*.mjs"],
extends: [tseslint.configs.disableTypeChecked],
},
{
ignores: ["**/*.mjs"],
languageOptions: {
parserOptions: {
project: true,
Expand Down
Loading

0 comments on commit e6e7e12

Please sign in to comment.