Skip to content

Commit 52e0101

Browse files
committed
fix: uncomment steps for installing dependencies, checking format, building, and running unit tests in CI workflow
1 parent 4ec3980 commit 52e0101

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
node-version: 20
2929
cache: 'npm'
3030

31-
# - name: Install dependencies
32-
# run: npm ci
31+
- name: Install dependencies
32+
run: npm ci
3333

34-
# - name: Check Format
35-
# run: npm run check-format
34+
- name: Check Format
35+
run: npm run check-format
3636

37-
# - name: Build
38-
# run: npm run build
37+
- name: Build
38+
run: npm run build
3939

40-
# - name: Run unit tests
41-
# run: npm run test:unit
40+
- name: Run unit tests
41+
run: npm run test:unit
4242

4343
# - name: Prepare local stack env
4444
# id: prepare

0 commit comments

Comments
 (0)