File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches :
4+ - main
5+ - develop
6+ pull_request :
7+ branches :
8+ - main
9+ - develop
10+
11+ permissions :
12+ contents : read
13+
14+ jobs :
15+ test :
16+ runs-on : ubuntu-latest
17+
18+ steps :
19+ - name : Run Tests
20+ run : ...
21+
22+ - name : Upload Test Results to Trunk.io
23+ if : ${{ !cancelled() }} # Upload the results even if the tests fail
24+ continue-on-error : true # don't fail this job if the upload fails
25+ uses : trunk-io/analytics-uploader@main
26+ with :
27+ junit-paths : " **/*.xml"
28+ org-slug : deanmachines
29+ token : ${{ secrets.TRUNK_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ opnapi.json
127127openapi.json
128128
129129# GitHub Actions
130- .github / workflows / ** .yml
130+
131131.github /workflows /** .yaml
132132.github /actions /** /node_modules /
133133.github /actions /** /dist /
You can’t perform that action at this time.
0 commit comments