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

Commit 919ef37

Browse files
committed
ci(actions): debug dir content
1 parent ab60f7a commit 919ef37

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fetch-depth: 0
2929
repository: 'coderplanets/coderplanets_server'
3030
# Relative path under $GITHUB_WORKSPACE to place the repository
31-
path: 'server'
31+
path: 'backend_server'
3232
- name: Set up Elixir and OTP
3333
uses: actions/setup-elixir@v1
3434
with:
@@ -41,13 +41,13 @@ jobs:
4141
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
4242
restore-keys: ${{ runner.os }}-mix-
4343
- name: deps.get
44-
working-directory: ./server
44+
working-directory: ./backend_server
4545
run: mix deps.get > /dev/null
4646
- name: set up test server
47-
working-directory: ./server
47+
working-directory: ./backend_server
4848
run: MIX_ENV=ci mix ecto.setup > /dev/null
4949
- name: seed test data
50-
working-directory: ./server
50+
working-directory: ./backend_server
5151
run: MIX_ENV=ci mix run priv/mock/cps_seeds.exs > /dev/null
5252

5353
setup-front:
@@ -64,14 +64,14 @@ jobs:
6464
uses: actions/checkout@v2
6565
with:
6666
fetch-depth: 0
67-
- name: Install Packages
68-
run: yarn
67+
# - name: Install Packages
68+
# run: yarn
6969
- name: Setup config tools
7070
run: chmod +x ./utils/bin/jq-linux; ./utils/bin/jq-linux -s '.[0] * .[1]' config/config.json config/config.ci.json > /tmp/config.json; cp /tmp/config.json ./config/config.json
71-
- name: Build Project
72-
run: npm run build.ci
73-
- name: Check Bundle Size
74-
run: BUNDLEWATCH_GITHUB_TOKEN=${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} npm run size.check
71+
# - name: Build Project
72+
# run: npm run build.ci
73+
# - name: Check Bundle Size
74+
# run: BUNDLEWATCH_GITHUB_TOKEN=${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} npm run size.check
7575
- name: Set up Elixir and OTP
7676
uses: actions/setup-elixir@v1
7777
with:
@@ -80,8 +80,8 @@ jobs:
8080
- name: debug dir
8181
run: ls
8282
- name: debug server dir
83-
run: ls ./server
83+
run: ls ./backend_server
8484
- name: Run Backend Server
85-
run: cd server; MIX_ENV=ci mix phx.server &
85+
run: cd backend_server; MIX_ENV=ci mix phx.server &
8686
# - name: Run Tests
8787
# run: npm run test:ci

0 commit comments

Comments
 (0)