Skip to content

Commit

Permalink
chore: remove external github action to install elixir: rename build …
Browse files Browse the repository at this point in the history
…steps
  • Loading branch information
nwittstruck committed Mar 29, 2024
1 parent 64b26c6 commit cbf8f8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/backend_on_push_branch_execute_ci_cd.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Do not forget to change status badge in ./README.md
name: on_push_branch__execute_ci_cd
name: backend_on_push_branch_execute_ci_cd

on:
push:
Expand All @@ -18,6 +18,7 @@ jobs:
container: hexpm/elixir:1.15.7-erlang-26.2.2-debian-bullseye-20240130-slim

steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache
with:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/frontend_on_push_branch_execute_ci_cd.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Do not forget to change status badge in ./README.md
name: on_push_branch__execute_ci_cd
name: frontend_on_push_branch_execute_ci_cd

on:
push:
Expand All @@ -19,9 +19,10 @@ jobs:
container: hexpm/elixir:1.15.7-erlang-26.2.2-debian-bullseye-20240130-slim

steps:
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.12.1'
node-version: ${{env.NODE_VERSION}}
- uses: actions/cache@v4
id: cache-npm
with:
Expand Down Expand Up @@ -61,7 +62,7 @@ jobs:
path: deps
key: ${{ runner.os }}-npm-v1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-npm-v1

- run: npm --prefix frontend ci
- run: npm --prefix frontend run check-types

Expand Down

0 comments on commit cbf8f8e

Please sign in to comment.