Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
lnart committed Apr 3, 2024
1 parent 28ccfa8 commit f6e73d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/push-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
name: checkout backend
with:
sparse-checkout: |
./
/src
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "21.1.0"
- run: npm ci
name: install dependencies
working-directory: ./src
working-directory: /src
- run: npm run test
name: test with npm
working-directory: ./src
working-directory: /src

lint-format:
name: lint and format backend
Expand All @@ -40,14 +40,14 @@ jobs:
node-version: "21.1.0"
- run: npm ci
name: install dependencies
working-directory: ./src
working-directory: /src
- run: |
if ! npm run prettier -- --check .; then
echo "Please format the code by running: npm run format"
exit 1
fi
name: check code formatting
working-directory: ./src
working-directory: /src
build-image:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit f6e73d1

Please sign in to comment.