Skip to content

feat: add docker build image to github actions #6

feat: add docker build image to github actions

feat: add docker build image to github actions #6

Workflow file for this run

name: ci-node-workflow
on:
pull_request:
branches:
- develop
jobs:
check-application:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm run test
- run: npm run start
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
push: false
tags: mathmelo/ci-github-actions:latest