Skip to content

Commit

Permalink
fix: Install system dependencies before other deps
Browse files Browse the repository at this point in the history
Signed-off-by: EndCredits <[email protected]>
  • Loading branch information
EndCredits committed Jan 11, 2024
1 parent 9cc4c40 commit 7528e19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ jobs:
with:
node-version: 18.12.1
cache: 'pnpm'

- name: Install Alsa sound dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install libasound2-dev

- name: Install global dependencies
run: npm i prisma fastify-cli turbo tsx [email protected] -g

- name: Install dependencies
run: pnpm install

- name: Install Alsa sound dependencies
if: runner.os == 'Linux'
run: sudo apt-get install libasound2-dev

- name: Copy Env
run: cp .env.example .env
Expand Down

0 comments on commit 7528e19

Please sign in to comment.