Skip to content

Commit 0a9b1c7

Browse files
committed
ci: nice wording
1 parent 904289e commit 0a9b1c7

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,40 @@
1-
name: CI
1+
name: ci
22

33
on:
44
push:
55
pull_request:
66

77
jobs:
88
lint-and-format:
9+
name: lint and format
910
runs-on: ubuntu-latest
1011

1112
steps:
12-
- uses: actions/checkout@v4
13+
- name: checkout
14+
uses: actions/checkout@v4
1315

14-
- name: Setup PHP
16+
- name: setup php
1517
uses: shivammathur/setup-php@v2
1618
with:
1719
php-version: "8.3"
1820
tools: php-cs-fixer
1921

20-
- name: Setup Node.js
22+
- name: setup node
2123
uses: actions/setup-node@v4
2224
with:
2325
node-version: "24"
2426

25-
- name: Install pnpm
27+
- name: install pnpm
2628
uses: pnpm/action-setup@v3
2729

28-
- name: Install dependencies
30+
- name: install node dependencies
2931
run: pnpm install --frozen-lockfile
3032

31-
- name: Run ESLint
33+
- name: run eslint
3234
run: pnpm run lint
3335

34-
- name: Check Prettier formatting
36+
- name: check prettier formatting
3537
run: pnpm exec prettier --check "src/**/*.{js,vue}"
3638

37-
- name: Run PHP CS Fixer (dry-run)
39+
- name: run php cs fixer
3840
run: php-cs-fixer fix --dry-run --diff --verbose

.github/workflows/i18n.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- name: checkout
1515
uses: actions/checkout@v4
1616

17-
- uses: lingodotdev/lingo.dev@main
17+
- name: translation magic ✨
18+
uses: lingodotdev/lingo.dev@main
1819
with:
1920
api-key: ${{ secrets.LINGODOTDEV_API_KEY }}

0 commit comments

Comments
 (0)