Bump braces from 3.0.2 to 3.0.3 #22
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
name: Pull Request Validation | |
concurrency: | |
group: pull_request_${{ github.event.number }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
pr-review: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Begin CI... | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.13.2' | |
- name: Install dependencies without generating a lockfile and fail if an update is needed | |
run: yarn --frozen-lockfile | |
- name: Danger JS Action | |
uses: danger/danger-js@9.1.8 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | |
lint-check: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Begin CI... | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.13.2' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- 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- | |
- name: Install dependencies without generating a lockfile and fail if an update is needed | |
run: yarn --frozen-lockfile | |
- name: Run Eslint validation | |
run: yarn lint | |
run-e2e-tests: | |
if: github.event.pull_request.draft == false | |
needs: | |
- pr-review | |
- lint-check | |
strategy: | |
fail-fast: false | |
matrix: | |
jobs: [0, 1, 2, 3, 4] | |
uses: ./.github/workflows/automation_exec.yml | |
with: | |
log_level: info | |
suite: ci.pull_request | |
spec_ci_index: ${{ matrix.jobs }} | |
spec_ci_total: 5 | |
max_instances: 3 | |
chrome_instances: 2 | |
browser_visible: true | |
enable_video: false |