-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
328 additions
and
158 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#! Auto synced from Shared CI Resources repository | ||
#! Don't change this file, instead change it in github.com/GaloyMoney/concourse-shared | ||
|
||
name: Audit | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
audit: | ||
name: Audit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "yarn" | ||
- run: yarn install --frozen-lockfile | ||
- name: Run audit | ||
run: make audit |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#! Auto synced from Shared CI Resources repository | ||
#! Don't change this file, instead change it in github.com/GaloyMoney/concourse-shared | ||
|
||
name: Check Code | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
check-code: | ||
name: Check Code | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "yarn" | ||
- run: yarn install --frozen-lockfile | ||
- name: Run check code | ||
run: make check-code |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#! Auto synced from Shared CI Resources repository | ||
#! Don't change this file, instead change it in github.com/GaloyMoney/concourse-shared | ||
|
||
name: Audit | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
audit: | ||
name: Audit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "yarn" | ||
- run: yarn install --frozen-lockfile | ||
- name: Run audit | ||
run: make audit |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#! Auto synced from Shared CI Resources repository | ||
#! Don't change this file, instead change it in github.com/GaloyMoney/concourse-shared | ||
|
||
name: Check Code | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
check-code: | ||
name: Check Code | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: "yarn" | ||
- run: yarn install --frozen-lockfile | ||
- name: Run check code | ||
run: make check-code |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#! Auto synced from Shared CI Resources repository | ||
#! Don't change this file, instead change it in github.com/GaloyMoney/concourse-shared | ||
|
||
name: Spelling | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
spelling: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v3 | ||
- name: Spell Check Repo | ||
uses: crate-ci/typos@master | ||
with: | ||
config: typos.toml |
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
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,13 +1,28 @@ | ||
apiVersion: vendir.k14s.io/v1alpha1 | ||
kind: Config | ||
|
||
# Relative to ci/ | ||
directories: | ||
- path: vendor | ||
- path: ../.github/workflows/vendor | ||
contents: | ||
- path: . # Copy this folder out to .. | ||
git: | ||
url: https://github.com/GaloyMoney/concourse-shared.git | ||
ref: 9d971fd13c024c5f8e6888208a0311178453409d | ||
includePaths: | ||
- shared/actions/* | ||
excludePaths: | ||
- shared/actions/rust-* | ||
newRootPath: shared/actions | ||
|
||
- path: ./vendor | ||
contents: | ||
- path: . | ||
git: | ||
url: https://github.com/GaloyMoney/concourse-shared.git | ||
ref: 70728a1b62e43be803a337bfae5968b2324f7ea8 | ||
ref: 9d971fd13c024c5f8e6888208a0311178453409d | ||
includePaths: | ||
- shared/**/* | ||
newRootPath: shared | ||
- shared/ci/**/* | ||
excludePaths: | ||
- shared/ci/**/rust-* | ||
newRootPath: shared/ci |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.