Skip to content

Commit

Permalink
Merge pull request #147 from Code-Hammers/build-test-script-fix
Browse files Browse the repository at this point in the history
Build Tests Quick Fix
  • Loading branch information
brok3turtl3 authored Jun 15, 2024
2 parents 74f4dd2 + 6908e00 commit 26ad025
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
with:
node-version: '18.17.1'
- name: Build Docker Image
run: docker build -t codehammers/ch-dev-dep-v2:latest -f Dockerfile-dev .
run: docker build -t codehammers/ch-dev-dep-v3:latest -f Dockerfile-dev .
- name: Install Root Dependencies
run: docker run codehammers/ch-dev-dep-v2:latest npm install
run: docker run codehammers/ch-dev-dep-v3:latest npm install
- name: Install Client Dependencies
run: docker run codehammers/ch-dev-dep-v2:latest /bin/sh -c "cd client && npm install"
run: docker run codehammers/ch-dev-dep-v3:latest /bin/sh -c "cd client && npm install"
- run: LINT_COMMAND=lint docker-compose -f docker-compose-lint.yml up --abort-on-container-exit
- run: docker-compose -f docker-compose-test.yml up --abort-on-container-exit
env:
Expand Down

0 comments on commit 26ad025

Please sign in to comment.