Skip to content

Adjusted next config env variable handling, added graphql types to pr… #100

Adjusted next config env variable handling, added graphql types to pr…

Adjusted next config env variable handling, added graphql types to pr… #100

Workflow file for this run

name: Automated Testing and Verification 🤖
on:
workflow_dispatch:
push:
paths-ignore:
- 'README.md'
jobs:
inspection:
name: Run inspection 🧪
runs-on: ubuntu-latest
steps:
- name: Use Node.js 21.5.0
uses: actions/setup-node@v3
with:
node-version: '21.5.0'
- name: Checkout repository 🔎
uses: actions/checkout@v3
- name: Install dependencies 📦
run: yarn install
- name: Lint code ✍️️
run: yarn lint
- name: Run tests ✅
run: yarn test
env:
APP_SERVER_URL: ${{ secrets.APP_SERVER_URL }}
build:
name: Build image 🛠
runs-on: ubuntu-latest
steps:
- name: Checkout repository 🔎
uses: actions/checkout@v3
- name: Build Docker image 🐳
run: |
docker build -f docker/staging/Dockerfile . --tag ${{ secrets.DOCKER_USERNAME }}/stage-deployment
env:
APP_SERVER_URL: ${{ secrets.APP_SERVER_URL }}