Skip to content

Commit

Permalink
Update deploy-docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Malte-Hansen authored Nov 14, 2024
1 parent e102c15 commit 766cde3
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,25 @@ jobs:
name: dist
path: dist/
retention-days: 3

lint:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Run lintin
run: npm run lint

test:
runs-on: ubuntu-latest
needs: [build]

steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -96,4 +110,4 @@ jobs:
--platform linux/amd64,linux/arm64 \
--tag ${{ vars.DOCKER_IMAGE_NAME }}:latest --tag explorviz/collaboration-service:latest . \
--push

0 comments on commit 766cde3

Please sign in to comment.