Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit a884854

Browse files
committed
ci(actions): fix mix not found
1 parent fa02242 commit a884854

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,11 @@ jobs:
7373
- name: Check Bundle Size
7474
run: BUNDLEWATCH_GITHUB_TOKEN=${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} npm run size.check
7575
- name: Run Backend Server
76+
uses: actions/setup-elixir@v1
77+
with:
78+
elixir-version: '1.10.3' # Define the elixir version [required]
79+
otp-version: '22.3' # Define the OTP version [required]
7680
working-directory: ./server
77-
run: MIX_ENV=ci mix phx.server
81+
run: MIX_ENV=ci mix phx.server &
7882
- name: Run Tests
7983
run: npm run test:ci

0 commit comments

Comments
 (0)