build(deps): bump github.com/onsi/ginkgo/v2 from 2.23.0 to 2.23.3 #267
Workflow file for this run
This file contains hidden or 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: Danger CI | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
- 'main' | |
jobs: | |
test: | |
name: Danger CI | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use NodeJS ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Get yarn cache directory path | |
id: cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: cache # use this to check for `cache-hit` (`steps.cache.outputs.cache-hit != 'true'`) | |
with: | |
path: | | |
**/node_modules | |
${{ steps.cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-cache-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cache-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn add danger | |
- name: Danger CI Check | |
uses: danger/[email protected] | |
env: | |
CI: true | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.GH_TOKEN }} |