Skip to content

Commit

Permalink
chore(github-actions): change if condition in update.yml to check TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
23nosurrend committed May 4, 2024
1 parent 63c6a84 commit f89b264
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ jobs:
steps:
- name: Check for EXPO_TOKEN
run: |
if [ -z "${{ secrets.EXPO_TOKEN }}" ];
if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then
echo "EXPO_TOKEN is not set."
exit 1
fi
shell: bash
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions coverage/clover.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<coverage generated="1714847179261" clover="3.2.0">
<project timestamp="1714847179261" name="All files">
<coverage generated="1714854881914" clover="3.2.0">
<project timestamp="1714854881914" name="All files">
<metrics statements="15" coveredstatements="11" conditionals="4" coveredconditionals="2" methods="4" coveredmethods="3" elements="23" coveredelements="16" complexity="0" loc="15" ncloc="15" packages="2" files="4" classes="4"/>
<package name="components">
<metrics statements="12" coveredstatements="8" conditionals="4" coveredconditionals="2" methods="4" coveredmethods="3"/>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/components/StyledText.tsx.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ <h1><a href="../index.html">All files</a> / <a href="index.html">components</a>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="../prettify.js"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/components/Themed.tsx.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ <h1><a href="../index.html">All files</a> / <a href="index.html">components</a>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="../prettify.js"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/components/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ <h1><a href="../index.html">All files</a> components</h1>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="../prettify.js"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/components/useColorScheme.ts.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h1><a href="../index.html">All files</a> / <a href="index.html">components</a>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="../prettify.js"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/constants/Colors.ts.html
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ <h1><a href="../index.html">All files</a> / <a href="index.html">constants</a> C
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="../prettify.js"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/constants/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ <h1><a href="../index.html">All files</a> constants</h1>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="../prettify.js"></script>
<script>
Expand Down
2 changes: 1 addition & 1 deletion coverage/lcov-report/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ <h1>All files</h1>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-05-04T18:26:19.186Z
at 2024-05-04T20:34:41.783Z
</div>
<script src="prettify.js"></script>
<script>
Expand Down

0 comments on commit f89b264

Please sign in to comment.