Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix(devtools): false positive app not detected#50447

fix(devtools): false positive app not detected

fix(devtools): false positive app not detected #50447

# This workflow builds the previews for pull requests when a certain label is applied.
# The actual deployment happens as part of a dedicated second workflow to avoid security
# issues where the building would otherwise occur in an authorized context where secrets
# could be leaked. More details can be found here:
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/.
name:Build adev for preview deployment
on:
pull_request:
types:[synchronize, labeled]
permissions:read-all
jobs:
adev-build:
runs-on:ubuntu-latest-8core
if:|
(github.event.action == 'labeled' && github.event.label.name == 'adev: preview') ||
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'adev: preview'))
steps:
-name:Initialize environment
uses:angular/dev-infra/github-actions/npm/checkout-and-setup-node@dd5658bd720370542913e23b21d80450bac94b60
-name:Setup Bazel
uses:angular/dev-infra/github-actions/bazel/setup@dd5658bd720370542913e23b21d80450bac94b60
-name:Setup Bazel RBE
uses:angular/dev-infra/github-actions/bazel/configure-remote@dd5658bd720370542913e23b21d80450bac94b60
-name:Install node modules
run:pnpm install --frozen-lockfile
-name:Build adev
# `snapshot-build` config is used to stamp the exact version with sha in the footer.
run:pnpm bazel build //adev:build.production --config=snapshot-build
-uses:angular/dev-infra/github-actions/previews/pack-and-upload-artifact@dd5658bd720370542913e23b21d80450bac94b60
with:
workflow-artifact-name:'adev-preview'
pull-number:'${{github.event.pull_request.number}}'
artifact-build-revision:'${{github.event.pull_request.head.sha}}'
deploy-directory:'./dist/bin/adev/dist/browser'

[8]ページ先頭

©2009-2025 Movatter.jp