-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (53 loc) · 1.83 KB
/
publish-test.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: publish-test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
publish-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: publish-extension
env:
PUBLISHER_NAME: ${{ secrets.PUBLISHER_NAME }}
ORG_NAME: ${{ secrets.ORG_NAME }}
USER_TOKEN: ${{ secrets.USER_TOKEN }}
run: |
npm i -g tfx-cli
node -v
tfx-cli -v
echo ${{ secrets.PUBLISHER_NAME }}
echo ${{ secrets.ORG_NAME }}
# - name: Install dependencies
# run: cd synopsys-task && npm ci
# - name: Unit Test Cases
# id: unit-test-cases
# shell: bash
# run: |
# cd synopsys-task && npm run test
# coverageFile="coverage/index.html"
# ### fetching line coverage from coverage/index.html file
# coverageSpan=$(grep -B 1 '<span class="quiet">Lines</span>' $coverageFile | head -n 1)
# coverageHtml=$(echo "$coverageSpan" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
# coverageInPercent=$(echo $coverageHtml | sed -n 's/.*<span class="strong">\([0-9.]*%\).*/\1/p' | tr -d ' ')
# echo "Line Coverage: $coverageInPercent"
# ### remove percentage sign from coverageInPercent and convert to a floatin-point number
# coverageValue=$(echo "$coverageInPercent" | tr -d '%' | sed 's/,/./g')
# ### check if the coverage is below 90%
# if [[ $coverageValue < 90 ]]; then
# echo "##[error]Line coverage is below 90%"
# exit 1
# fi