FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
NativeScript/.github/workflows/native_artifacts_check.yml at main · NativeScript/NativeScript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NativeScript
/
NativeScript
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1.7k
Star
25.6k
Code
Issues
771
Pull requests
62
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
NativeScript
/
.github
/
workflows
/
native_artifacts_check.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
35 lines (32 loc) · 1.22 KB
Breadcrumbs
NativeScript
/
.github
/
workflows
/
native_artifacts_check.yml
Copy path
File metadata and controls
35 lines (32 loc) · 1.22 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
Verifies that the committed native artifacts (packages/core/platforms) are in
#
sync with their sources in packages/ui-mobile-base. Native builds are expensive
#
and not rebuilt in CI, so this guards against changing native sources without
#
rebuilding + committing the artifacts. Pure content hashing — no Xcode/Android
#
toolchain required.
name
:
'
Native artifacts check
'
on
:
pull_request
:
paths
:
-
'
packages/ui-mobile-base/**
'
-
'
packages/core/platforms/**
'
permissions
:
contents
:
read
env
:
NX_CLOUD_ACCESS_TOKEN
:
${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs
:
native-artifacts-check
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
#
v7.0.1
-
uses
:
actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903
#
v6.0.0
with
:
node-version
:
23.5.0
cache
:
'
npm
'
-
name
:
'
Derive appropriate SHAs for base and head for `nx affected` commands
'
uses
:
nrwl/nx-set-shas@afb73a62d26e41464e9254689e1fd6122ee683c1
#
v5.0.1
with
:
main-branch-name
:
'
main
'
-
name
:
'
Install dependencies
'
run
:
npm ci
-
name
:
'
Verify native build state
'
run
:
npx nx verify-native ui-mobile-base
Back
|
FazBrowse Home
|
New Git URL