Skip to content

Commit

Permalink
CI: Don’t use root working directory
Browse files Browse the repository at this point in the history
I think this was breaking the dependabot runs, because “/” was
interpreted here as the root directory of the runner, not the top level
of the repository, and there wasn’t permission to create files and
directories there. Probably this worked at first and only broke
recently.
  • Loading branch information
emdash-ie committed Jul 17, 2023
1 parent 8fbef9b commit 55e7ca5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ jobs:

- name: Install - support-reminders
run: yarn
working-directory: /

- name: Install - CDK
run: yarn
Expand All @@ -55,7 +54,6 @@ jobs:
# ---- Build ---- #
- name: Build - support-reminders
run: yarn run build
working-directory: /


- name: Build - CDK
Expand All @@ -65,7 +63,6 @@ jobs:
# ---- Test ---- #
- name: Test - support-reminders
run: yarn run test
working-directory: /
env:
TEST_DB_URL: postgresql://localhost/postgres
TEST_DB_USER: postgres
Expand Down

0 comments on commit 55e7ca5

Please sign in to comment.