Skip to content

[Snyk] Upgrade react-select from 5.8.2 to 5.8.3 #3223

[Snyk] Upgrade react-select from 5.8.2 to 5.8.3

[Snyk] Upgrade react-select from 5.8.2 to 5.8.3 #3223

Workflow file for this run

name: Testing and Linting πŸ§ͺπŸ“
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- name: Checkout πŸ””
uses: actions/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install πŸ”§
run: yarn install
- name: Build πŸ”§
run: yarn build
env:
NEXT_PUBLIC_API_MOCKING: enabled
AEM_GRAPHQL_ENDPOINT: ${{ secrets.AEM_GRAPHQL_ENDPOINT }}
AEM_BASE_URL: ${{ secrets.AEM_BASE_URL }}
ADOBE_ANALYTICS_URL: ${{ secrets.ADOBE_ANALYTICS_URL }}
THANK_YOU_EMAIL: ${{ secrets.THANK_YOU_EMAIL }}
CI: true
- name: Linting Test πŸ“
run: yarn lint:test
env:
CI: true
- name: Unit Tests πŸ§ͺ
run: yarn test:coverage
env:
CI: true
- name: Cypress end-to-end πŸ§ͺ
uses: cypress-io/github-action@v6
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # allowing set-env funtion to run (vulnerability https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/)
CI: true
with:
install: false
start: yarn start
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Deploy Coverage Report πŸš€
uses: JamesIves/[email protected]
with:
TARGET_FOLDER: ${{ steps.extract_branch.outputs.branch }}/coverage
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: coverage # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
- name: Find Comment
if: steps.extract_branch.outputs.branch != 'main'
uses: peter-evans/find-comment@v1
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
comment-author: 'github-actions[bot]'
body-includes: |
Coverage Report Link for Branch
https://dts-stn.github.io/${{ github.event.pull_request.base.repo.name }}/${{ steps.extract_branch.outputs.branch }}/coverage/lcov-report
- name: Create or update comment # comment in pull request storybooks link
if: steps.extract_branch.outputs.branch != 'main'
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
issue-number: ${{ github.event.pull_request.number }}
body: |
Coverage Report Link for Branch
https://dts-stn.github.io/${{ github.event.pull_request.base.repo.name }}/${{ steps.extract_branch.outputs.branch }}/coverage/lcov-report
edit-mode: replace