Skip to content

Commit ab0e572

Browse files
author
Nikos Katsikanis
committed
git actions
1 parent 0a54a29 commit ab0e572

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Tests and Lint
1+
name: Build, Test, and Deploy
22

33
on:
44
push:
@@ -18,14 +18,19 @@ jobs:
1818
- name: Set up Node.js
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: '18'
21+
node-version: '20' # Use Node.js 18.x version (or specify your Node version)
2222
cache: 'pnpm'
2323

24+
# Install pnpm globally
2425
- name: Install pnpm
2526
run: npm install -g pnpm
2627

28+
# Install project dependencies using pnpm
2729
- name: Install dependencies
2830
run: pnpm install
2931

32+
# Run tests
3033
- name: Run tests
3134
run: pnpm test
35+
36+
# Optionally, add a build or deployment step here if required

0 commit comments

Comments
 (0)