Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
directory: '/'
schedule:
interval: monthly
open-pull-requests-limit: 1
groups:
npm-dependencies:
patterns:
- "*"
- '*'
assignees:
- CISCODE-MA/cloud-devops
labels:
- "dependencies"
- "npm"
- 'dependencies'
- 'npm'
commit-message:
prefix: "chore(deps)"
include: "scope"
prefix: 'chore(deps)'
include: 'scope'
rebase-strategy: auto
52 changes: 26 additions & 26 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
name: CI - PR Validation

on:
pull_request:
branches: [develop]
pull_request:
branches: [develop]

permissions:
contents: read
contents: read

jobs:
validate:
name: CI - PR Validation
runs-on: ubuntu-latest
validate:
name: CI - PR Validation
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm

- name: Install
run: npm ci
- name: Install
run: npm ci

- name: Format (check)
run: npm run format
- name: Format (check)
run: npm run format

- name: Lint
run: npm run lint
- name: Lint
run: npm run lint

- name: Typecheck
run: npm run typecheck
- name: Typecheck
run: npm run typecheck

- name: Test
run: npm test
- name: Test
run: npm test

- name: Build
run: npm run build
- name: Build
run: npm run build
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
cache: "npm"
node-version: '22'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'

- name: Install dependencies
run: npm ci
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
contents: read

env:
SONAR_HOST_URL: "https://sonarcloud.io"
SONAR_ORGANIZATION: "ciscode"
SONAR_PROJECT_KEY: "CISCODE-MA_HooksKit"
SONAR_HOST_URL: 'https://sonarcloud.io'
SONAR_ORGANIZATION: 'ciscode'
SONAR_PROJECT_KEY: 'CISCODE-MA_HooksKit'

steps:
- name: Checkout
Expand All @@ -31,8 +31,8 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
node-version: '22'
cache: 'npm'

- name: Install
run: npm ci
Expand Down
Loading