Skip to content

Commit e07f908

Browse files
authored
Merge branch 'main' into docs/getting-started
2 parents ffe2965 + caa1fb7 commit e07f908

File tree

12 files changed

+616
-1023
lines changed

12 files changed

+616
-1023
lines changed

Diff for: .github/workflows/nodejs.yml renamed to .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
33

4-
name: Node.js CI
4+
name: CI
55

66
on:
77
push:
@@ -43,7 +43,7 @@ jobs:
4343
- name: Test
4444
id: test
4545
run: |
46-
npm run test-coverage-ci || echo "Silently ignoring coverage threshold limit..."
46+
npm run test-coverage-ci
4747
4848
- name: Upload test coverage report
4949
uses: codecov/[email protected]

Diff for: .github/workflows/dependency-review.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'Dependency Review'
2+
on: [pull_request]
3+
4+
permissions:
5+
contents: read
6+
pull-requests: write
7+
8+
jobs:
9+
dependency-review:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: 'Checkout Repository'
13+
uses: actions/checkout@v4
14+
- name: Dependency Review
15+
uses: actions/dependency-review-action@v4
16+
with:
17+
comment-summary-in-pr: always
18+
fail-on-severity: high
19+
allow-licenses: MIT, Apache-2.0, BSD-3-Clause, ISC, BSD-2-Clause, Unlicense, CC0-1.0, 0BSD, X11, MPL-2.0, MPL-1.0, MPL-1.1, MPL-2.0
20+
fail-on-scopes: development, runtime

Diff for: .github/workflows/license-validation.yml

-29
This file was deleted.

Diff for: .github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: Lint Code Base
1+
name: Code Cleanliness
22

33
on: [pull_request]
44

55
env: # environment variables (available in any part of the action)
6-
NODE_VERSION: 16
6+
NODE_VERSION: 18
77

88
jobs:
99
linting:

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
[![FINOS - Incubating](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-incubating.svg)](https://community.finos.org/docs/governance/Software-Projects/stages/incubating)
2525
[![NPM](https://img.shields.io/npm/v/@finos/git-proxy?colorA=00C586&colorB=000000)](https://www.npmjs.com/package/@finos/git-proxy)
26-
[![Build](https://img.shields.io/github/actions/workflow/status/finos/git-proxy/nodejs.yml?branch=main&label=CI&logo=github&colorA=00C586&colorB=000000)](https://github.com/finos/git-proxy/actions/workflows/nodejs.yml)
26+
[![Build](https://img.shields.io/github/actions/workflow/status/finos/git-proxy/ci.yml?branch=main&label=CI&logo=github&colorA=00C586&colorB=000000)](https://github.com/finos/git-proxy/actions/workflows/ci.yml)
2727
[![codecov](https://codecov.io/gh/finos/git-proxy/branch/main/graph/badge.svg)](https://codecov.io/gh/finos/git-proxy)
2828
[![Documentation](https://img.shields.io/badge/_-documentation-000000?colorA=00C586&logo=docusaurus&logoColor=FFFFFF&)](https://git-proxy.finos.org)
2929
<br />

Diff for: index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ const argv = require('yargs/yargs')(process.argv.slice(2))
1515
required: false,
1616
alias: 'c',
1717
},
18-
}).argv;
18+
})
19+
.strict().argv;
1920

2021
require('./src/config/file').configFile = argv.c ? argv.c : undefined;
2122

0 commit comments

Comments
 (0)