Skip to content

Commit

Permalink
fix(ci): use setup-node to manage caches
Browse files Browse the repository at this point in the history
  • Loading branch information
JPBM135 committed Sep 17, 2024
1 parent e398023 commit 811e56f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
- name: Install node.js v16
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: "yarn"

- name: Install dependencies
uses: ./.github/actions/yarnCache
run: yarn --immutable

- name: Build dependencies
run: yarn build
Expand All @@ -27,5 +28,5 @@ jobs:

- name: Docker
run: |
docker-compose -f docker-compose.yml -f docker-compose.local.yml build
docker-compose -f docker-compose.yml -f docker-compose.prod.yml build
docker compose -f docker-compose.yml -f docker-compose.local.yml build
docker compose -f docker-compose.yml -f docker-compose.prod.yml build

0 comments on commit 811e56f

Please sign in to comment.