-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from FundingCircle/AF-999-updates
AF-999 Update Ruby version and CODEOWNERS file
- Loading branch information
Showing
5 changed files
with
6,516 additions
and
10,993 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,16 +1,39 @@ | ||
version: 2 | ||
version: 2.1 | ||
|
||
commands: | ||
install_node_dependencies: | ||
description: "Install Node.js dependencies" | ||
steps: | ||
- checkout | ||
- run: npm config set registry https://fundingcircle.jfrog.io/fundingcircle/api/npm/npm/ | ||
- run: curl https://[email protected]/fundingcircle/api/npm/auth >> .npmrc | ||
- run: npm config fix | ||
- run: npm ci | ||
parameters: | ||
node_env: | ||
type: string | ||
default: '18' | ||
install_ruby_dependencies: | ||
description: "Install Ruby dependencies" | ||
steps: | ||
- run: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle | ||
run_tests: | ||
description: "Run tests" | ||
steps: | ||
- run: bundle exec rake --trace | ||
|
||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/ruby:2.4-node | ||
- image: cimg/ruby:3.3.0-node | ||
steps: | ||
- checkout | ||
- run: | ||
name: Install Node.js dependencies | ||
command: npm install | ||
- run: | ||
name: Install Ruby dependencies | ||
command: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle | ||
- run: | ||
name: Run tests | ||
command: bundle exec rake --trace | ||
- install_node_dependencies | ||
- install_ruby_dependencies | ||
- run_tests | ||
|
||
workflows: | ||
version: 2.1 | ||
ci: | ||
jobs: | ||
- build: | ||
context: org-global |
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
@FundingCircle/team-acquire-and-frontend-platform | ||
* @FundingCircle/team-acquire-and-frontend-platform |
This file contains 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.