Skip to content

Add more tests to the pipeline #36

Add more tests to the pipeline

Add more tests to the pipeline #36

Workflow file for this run

name: Test and deploy to staging
on:
push:
branches:
- master
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm install
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: grapa
tags: staging ${{ github.sha }}
containerfiles: |
./Dockerfile
build-args: |
BASE_PATH=/grapa
GIT_SHA=${{ github.sha }}
STAGING=true
E2E=false
- run: npm test
- run: npm test:front
- run: npm test:integration
- name: Push to quay.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: quay.io/toska
username: toska+github
password: ${{ secrets.QUAY_IO_TOKEN }}