Skip to content

feat: Add Docker support (#597) #34

feat: Add Docker support (#597)

feat: Add Docker support (#597) #34

Workflow file for this run

name: Docker Publish
on:
push:
branches: [ master ]
jobs:
# Publish to GitHub Container Registry
build-and-push-docker-image:
# Master branch only - extra checks
if: ${{ github.ref == 'refs/heads/master' }}
needs: code-tests
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for OpenActive Test Suite
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/openactive/test-suite
labels: |
org.opencontainers.image.title=OpenActive Test Suite
org.opencontainers.image.description=Test suite for OpenActive data publishing and Open Booking API implementations
org.opencontainers.image.vendor=OpenActive
tags: |
latest
- name: Build and push Docker image for OpenActive Test Suite
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# Copied from code-tests.yml, TODO: Remove this duplication
code-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout OpenActive Test Suite
uses: actions/checkout@v2
- name: Setup Node.js 18.17.1
uses: actions/setup-node@v1
with:
node-version: 18.17.1
- name: Install OpenActive Test Suite
run: npm install
- name: Run Checks on the Code (Test the Tests!)
run: npm test