Skip to content

Commit

Permalink
git actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikos Katsikanis committed Sep 28, 2024
1 parent 0a54a29 commit ab0e572
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Tests and Lint
name: Build, Test, and Deploy

on:
push:
Expand All @@ -18,14 +18,19 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20' # Use Node.js 18.x version (or specify your Node version)
cache: 'pnpm'

# Install pnpm globally
- name: Install pnpm
run: npm install -g pnpm

# Install project dependencies using pnpm
- name: Install dependencies
run: pnpm install

# Run tests
- name: Run tests
run: pnpm test

# Optionally, add a build or deployment step here if required

0 comments on commit ab0e572

Please sign in to comment.