Skip to content

Commit

Permalink
fix: test github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JadlionHD committed Sep 5, 2024
1 parent ceab7b4 commit 69c1793
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,21 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install
cache: "pnpm"

- name: Build Apps
run: npm run build
run: pnpm run build

- name: Compress build files
run: zip -r build.zip build
Expand Down

0 comments on commit 69c1793

Please sign in to comment.