Skip to content

Commit

Permalink
fix: only build workflows add node
Browse files Browse the repository at this point in the history
  • Loading branch information
ihoey committed Mar 7, 2024
1 parent 01c8c08 commit 4097742
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Only Build
branding:
icon: "arrow-up-right"
color: "purple"

on:
# Trigger the workflow every time you push to the `main` branch
Expand All @@ -20,10 +23,19 @@ jobs:
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: "18"
version: "latest"

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"

- name: Install
shell: "bash"
working-directory: "."
Expand Down

0 comments on commit 4097742

Please sign in to comment.