Skip to content

Commit 92e456e

Browse files
committed
ci: update config
1 parent 0348f4d commit 92e456e

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/autofix.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: autofix.ci # needed to securely identify the workflow
2+
3+
on:
4+
pull_request:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
fix:
12+
name: Run automated fix
13+
uses: prettier/shared-workflows/.github/workflows/automated-fix.yml@main
14+
permissions: {}
15+
with:
16+
repository: prettier/prettier

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ jobs:
4747
- run: yarn run test
4848
env:
4949
ENABLE_COVERAGE: 1
50-
- uses: codecov/codecov-action@v4
50+
- uses: codecov/codecov-action@v5
5151
with:
52-
token: ${{ secrets.CODECOV_TOKEN }}
5352
fail_ci_if_error: true
53+
disable_search: true
54+
files: coverage/lcov.info
55+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)