-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into renovate/e2e-npm-jsonwebtoken-vulnerability
- Loading branch information
Showing
2,409 changed files
with
78,958 additions
and
67,889 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 |
---|---|---|
|
@@ -21,6 +21,20 @@ | |
|
||
version: 2.1 | ||
|
||
parameters: | ||
GHA_Actor: | ||
type: string | ||
default: '' | ||
GHA_Action: | ||
type: string | ||
default: '' | ||
GHA_Event: | ||
type: string | ||
default: '' | ||
GHA_Meta: | ||
type: string | ||
default: '' | ||
|
||
orbs: | ||
browser-tools: circleci/[email protected] | ||
|
||
|
@@ -29,7 +43,7 @@ executors: | |
parameters: | ||
node-version: | ||
# renovate datasource=node-version depName=node | ||
default: 20.16.0 | ||
default: 20.17.0 | ||
type: string | ||
docker: | ||
- image: cimg/node:<<parameters.node-version>> | ||
|
@@ -38,24 +52,24 @@ executors: | |
parameters: | ||
node-version: | ||
# renovate datasource=node-version depName=node | ||
default: 20.16.0 | ||
default: 20.17.0 | ||
type: string | ||
docker: | ||
- image: cimg/node:<<parameters.node-version>> | ||
- image: postgres:15.7-alpine | ||
- image: postgres:15.8-alpine | ||
environment: | ||
POSTGRES_USER: circleci | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
- image: redis:7.2.5-alpine | ||
- image: adobe/s3mock:3.9.1 | ||
- image: adobe/s3mock:3.10.1 | ||
environment: | ||
- initialBuckets=pix-import-test | ||
resource_class: small | ||
node-browsers-docker: | ||
parameters: | ||
node-version: | ||
# renovate datasource=node-version depName=node | ||
default: 20.16.0 | ||
default: 20.17.0 | ||
type: string | ||
docker: | ||
- image: cimg/node:<<parameters.node-version>>-browsers | ||
|
@@ -66,11 +80,11 @@ executors: | |
parameters: | ||
node-version: | ||
# renovate datasource=node-version depName=node | ||
default: 20.16.0 | ||
default: 20.17.0 | ||
type: string | ||
docker: | ||
- image: cimg/node:<<parameters.node-version>>-browsers | ||
- image: postgres:15.7-alpine | ||
- image: postgres:15.8-alpine | ||
environment: | ||
POSTGRES_USER: circleci | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
|
@@ -80,11 +94,11 @@ executors: | |
parameters: | ||
node-version: | ||
# renovate datasource=node-version depName=node | ||
default: 20.16.0 | ||
default: 20.17.0 | ||
type: string | ||
docker: | ||
- image: cimg/node:<<parameters.node-version>> | ||
- image: postgres:15.7-alpine | ||
- image: postgres:15.8-alpine | ||
environment: | ||
POSTGRES_USER: circleci | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
|
@@ -93,6 +107,10 @@ executors: | |
workflows: | ||
version: 2 | ||
build-and-test: | ||
# This workflow is set to be conditionally triggered, only when | ||
# the GitHub Action is triggered. | ||
# With no other workflows, normal push events will be ignored currently. | ||
when: << pipeline.parameters.GHA_Action >> | ||
jobs: | ||
- checkout: | ||
context: Pix | ||
|
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,19 @@ | ||
name: Trigger CircleCI | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
push: | ||
branches: dev | ||
|
||
jobs: | ||
trigger-ci: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Trigger CircleCI | ||
# ensure PR is not draft | ||
if: '! github.event.pull_request.draft' | ||
uses: CircleCI-Public/[email protected] | ||
env: | ||
CCI_TOKEN: ${{ secrets.PIX_SERVICE_CIRCLE_CI_TOKEN }} |
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 @@ | ||
20.16.0 | ||
20.17.0 |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20.16.0 | ||
20.17.0 |
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
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,21 @@ | ||
import ApplicationAdapter from './application'; | ||
|
||
export default class CertificationIssueReportAdapter extends ApplicationAdapter { | ||
namespace = 'api/'; | ||
|
||
urlForUpdateRecord(certificationIssueReportId) { | ||
return `${this.host}/api/certification-issue-reports/${certificationIssueReportId}`; | ||
} | ||
|
||
updateRecord(store, type, snapshot) { | ||
if (snapshot.adapterOptions.resolutionLabel) { | ||
const payload = { | ||
data: { | ||
resolution: snapshot.adapterOptions.resolutionLabel, | ||
}, | ||
}; | ||
|
||
return this.ajax(this.urlForUpdateRecord(snapshot.id), 'PATCH', { data: payload }); | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.