Skip to content

Commit 66ba73c

Browse files
committed
ci: rename ci workflow
Signed-off-by: Usama Idriss Kakumba <usamakakumba@gmail.com>
1 parent 93b204b commit 66ba73c

1 file changed

Lines changed: 14 additions & 11 deletions

File tree

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Checks
1+
name: Node.js Compatibility Checks
22
on:
33
pull_request:
44
types: [opened, synchronize]
@@ -11,31 +11,34 @@ on:
1111
- '*.md'
1212

1313
jobs:
14-
checks:
14+
compatibility-check:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
1818
node-version: [16, 18, 20]
1919
steps:
20-
- name: Checkout Repo
20+
- name: Checkout Repository
2121
uses: actions/checkout@v4
2222

2323
- name: Setup Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
27-
28-
- name: Setup and install deps
27+
28+
- name: Install Dependencies
2929
run: npm install
3030

31-
- name: Lint check
31+
- name: Lint Check
3232
run: npm run lint
3333

34-
- name: Prettier check
34+
- name: Prettier Check
3535
run: npm run format:check
36-
37-
- name: Build
36+
37+
- name: Build Project
3838
run: npm run build
3939

40-
- name: Test
41-
run: npm run test
40+
- name: Run Tests
41+
run: npm run test
42+
43+
- name: Log Node.js Version
44+
run: echo "Tested on Node.js version ${{ matrix.node-version }}"

0 commit comments

Comments
 (0)