Skip to content

Commit b05b333

Browse files
authored
Merge pull request #100/#99 from NicolasOmar/check-weekly-dependency-updates-26-07-19
Dependencies version updated. 19/07/26
2 parents 162df79 + e030d44 commit b05b333

13 files changed

Lines changed: 108 additions & 334 deletions

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ updates:
1010
schedule:
1111
interval: "weekly"
1212
day: "sunday"
13-
time: "09:40"
13+
time: "09:05"
1414
timezone: "Europe/Madrid"
1515
assignees:
1616
- "nicolasomar"
@@ -22,7 +22,7 @@ updates:
2222
schedule:
2323
interval: "weekly"
2424
day: "sunday"
25-
time: "09:40"
25+
time: "09:05"
2626
timezone: "Europe/Madrid"
2727
assignees:
2828
- "nicolasomar"

.github/workflows/check_quality.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
# Disabling shallow clone is recommended for improving relevancy of reporting
1717
fetch-depth: 0
1818
- name: 2/6 | Setup Node environment
19-
uses: actions/setup-node@v6
19+
uses: actions/setup-node@v7
2020
with:
2121
node-version: 'latest'
2222
- name: 3/6 | Install depedencies
2323
run: npm ci
2424
- name: 4/6 | Run unit tests suite
25-
run: npm run test:ci
25+
run: npm run test:coverage
2626
- name: 5/6 | Run Codecov Uploader
2727
uses: codecov/codecov-action@v7
2828
with:
@@ -36,3 +36,7 @@ jobs:
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
39+
with:
40+
args: >
41+
-Dproject.settings=configs/sonar-project.properties
42+
-Dsonar.projectBaseDir=.

.github/workflows/create_deps_update_issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Create weekly updates reminder
22
on:
33
schedule:
4-
- cron: '40 10 * * 0'
4+
- cron: '05 10 * * 0'
55

66
jobs:
77
create_issue:

.github/workflows/release_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: 1/4 | Checkout repo
2020
uses: actions/checkout@v7
2121
- name: 2/4 | Setup Node environment
22-
uses: actions/setup-node@v6
22+
uses: actions/setup-node@v7
2323
with:
2424
node-version: latest
2525
- name: 3/4 | Install dependencies

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
npm run prettier
1+
npm run format:check
22
npm run lint
33
npm run build
44
npm test

.releaserc

Lines changed: 0 additions & 13 deletions
This file was deleted.
File renamed without changes.

configs/release.config.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default {
2+
branches: ['main'],
3+
plugins: [
4+
'@semantic-release/commit-analyzer',
5+
'@semantic-release/release-notes-generator',
6+
'@semantic-release/changelog',
7+
'@semantic-release/github',
8+
'@semantic-release/npm',
9+
'@semantic-release/git'
10+
]
11+
}

0 commit comments

Comments
 (0)