Skip to content

Commit

Permalink
chore: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehesp committed Sep 26, 2024
1 parent 6760104 commit 2e4e7bb
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/testing.yaml → .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,23 @@ jobs:
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Set up Node.js environment and install pnpm
- name: Setup Node.js and pnpm
uses: actions/setup-node@v3
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false # We'll do this later

# Setup Node.js with pnpm
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.11.1'
node-version: 20
cache: 'pnpm'

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

# Install all dependencies at the root
- name: Install dependencies
- name: Install dependencies (pnpm)
run: pnpm install

# Install Firebase CLI
Expand Down

0 comments on commit 2e4e7bb

Please sign in to comment.