1 parent be27d73 commit cd2f8a1Copy full SHA for cd2f8a1
1 file changed
β.github/workflows/ci.ymlβ
@@ -1,4 +1,4 @@
1
-name: CI
+name: π CI
2
3
on:
4
push:
@@ -10,21 +10,22 @@ on:
10
11
jobs:
12
ci:
13
+ name: π Lint, Format, Type & Build
14
permissions:
15
contents: read
16
runs-on: ubuntu-latest
17
steps:
- - name: Checkout
18
+ - name: π₯ Checkout
19
uses: actions/checkout@v6
20
- - name: Setup Node
21
+ - name: π’ Setup Node
22
uses: actions/setup-node@v6
23
with:
24
node-version: "lts/*"
25
cache: "npm"
26
- - name: Install dependencies
27
+ - name: π¦ Install dependencies
28
run: npm ci
29
- - name: Lint, format, type, and build checks
30
+ - name: π Lint, format, type, and build checks
31
run: npm run ci:check
0 commit comments