Skip to content

Workflow file for this run

name: Backend-ci
on:
push:
branches: [main]
paths: 'backend/**'
pull_request:
types: [opened, synchronize, reopened]
paths: 'backend/**'
jobs:
git-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Remove deploy label
uses: actions-ecosystem/action-remove-labels@v1
with:
labels: "deploy: backend"
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: "backend/package-lock.json"
- name: Install deps
run: npm install
working-directory: "backend"
- name: Run ci
run: npm ci
working-directory: "backend"
docker-push:

Check failure on line 39 in .github/workflows/Backend-ci .yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Backend-ci .yml

Invalid workflow file

You have an error in your yaml syntax on line 39
needs: git-ci
runs-on: ubuntu-latest
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./backend
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/nft-mkp-api:latest