Skip to content

Commit

Permalink
🚧 Testing deployment to GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
zeppelin committed Nov 13, 2023
1 parent fce9052 commit 092c57b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- master
- main
- "*"

env:
PNPM_VERSION: 8.3.1

jobs:
build-and-deploy:
Expand All @@ -13,6 +17,17 @@ jobs:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4.1.1

- name: Setup πŸ“¦
uses: pnpm/action-setup@v2.4.0
with:
version: ${{ env.PNPM_VERSION }}

- name: Install Node πŸ“¦
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: pnpm

- name: Install and Build πŸ”§
run: |
pnpm install
Expand Down

0 comments on commit 092c57b

Please sign in to comment.