Skip to content

Feat/upgrade db sync 13.2.0.1 ogmios 6.1 node 8.7.3 #526

Feat/upgrade db sync 13.2.0.1 ogmios 6.1 node 8.7.3

Feat/upgrade db sync 13.2.0.1 ogmios 6.1 node 8.7.3 #526

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v2.3.1
with:
submodules: true
- name: 🧰 Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: 🧰 Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: 🔨 Compile TypeScript and lint
run: |
yarn install --offline --frozen-lockfile --non-interactive --logevel=error
yarn build
yarn lint
env:
ALLOW_INTROSPECTION: true
CACHE_ENABLED: false
CARDANO_GRAPHQL_VERSION: ${{ github.sha }}
- name: 🔨 Build Cardano GraphQL Server Dockerfile
uses: docker/build-push-action@v2
with:
cache-from: type=registry,ref=inputoutput/cardano-graphql:master
cache-to: type=inline
tags: inputoutput/cardano-graphql:${{ github.sha }}
target: server
- name: 🔨 Build Cardano GraphQL Hasura Dockerfile
uses: docker/build-push-action@v2
with:
context: ./packages/api-cardano-db-hasura/hasura
file: ./packages/api-cardano-db-hasura/hasura/Dockerfile
tags: inputoutput/cardano-graphql-hasura:${{ github.sha }}