Skip to content

Update Frontegg AdminPortal to 6.113.0 #936

Update Frontegg AdminPortal to 6.113.0

Update Frontegg AdminPortal to 6.113.0 #936

name: General Checks
on:
pull_request:
types: [ assigned, unassigned, labeled, unlabeled, opened, edited, reopened, synchronize, ready_for_review, review_requested ]
pull_request_review:
types: [ submitted, edited, dismissed ]
concurrency:
group: ci-general-checks-${{ github.ref }}
cancel-in-progress: true
env:
CI: true
jobs:
init:
name: 'DangerJS'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Read .nvmrc
id: nvm
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install
- run: yarn danger ci -i 'Code-Quality-Check' --verbose
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}