Skip to content

Commit

Permalink
Actually install the deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mehallhm committed Nov 13, 2024
1 parent ab29f9d commit 15d2c15
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Install deps
run: yarn install

- name: Check linter
run: yarn lint

Expand All @@ -56,5 +59,8 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Install deps
run: yarn install

- name: Checks for duplicate definitions in the yarn lockfile
run: yarn dedupe --check
11 changes: 10 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Install deps
run: yarn install

- name: Run unit tests
run: yarn unittest --coverage

Expand Down Expand Up @@ -70,8 +73,11 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Install deps
run: yarn install

- name: Setup database
- run: |
run: |
yarn db:migrate
yarn db:refresh
Expand Down Expand Up @@ -128,6 +134,9 @@ jobs:
- name: Enable Corepack
run: corepack enable

- name: Install deps
run: yarn install

- run: mv ./data/cache_2022_summer ./cache

- run: yarn db:migrate
Expand Down

0 comments on commit 15d2c15

Please sign in to comment.