Lightbox: Added Button to jump to current image within the conversation #282
Workflow file for this run
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
# Copyright 2020 Signal Messenger, LLC | |
# SPDX-License-Identifier: AGPL-3.0-only | |
name: Danger | |
on: | |
pull_request: | |
jobs: | |
danger: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # fetch all history | |
- name: Setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
cache-dependency-path: 'package-lock.json' | |
- run: npm install -g [email protected] | |
- name: Cache danger node_modules | |
id: cache-desktop-modules | |
uses: actions/cache@v3 | |
with: | |
path: danger/node_modules | |
key: danger-${{ runner.os }}-${{ hashFiles('danger/package.json', 'danger/package-lock.json') }} | |
- name: Install danger node_modules | |
if: steps.cache-desktop-modules.outputs.cache-hit != 'true' | |
run: cd danger && npm ci | |
- name: Run DangerJS | |
run: npm run danger:ci | |
env: | |
DANGER_GITHUB_API_TOKEN: ${{ secrets.AUTOMATED_GITHUB_PAT }} |