Skip to content

Commit 6357f20

Browse files
author
Sam
authored
Merge pull request #75 from ssdeanx/develop
feat: update .gitignore and add flaky.yml workflow
2 parents 76a42f4 + 91f37ff commit 6357f20

2 files changed

Lines changed: 30 additions & 1 deletion

File tree

.github/workflows/flaky.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ opnapi.json
127127
openapi.json
128128

129129
# GitHub Actions
130-
.github/workflows/**.yml
130+
131131
.github/workflows/**.yaml
132132
.github/actions/**/node_modules/
133133
.github/actions/**/dist/

0 commit comments

Comments
 (0)