Skip to content

Add release docker image workflow #98

Add release docker image workflow

Add release docker image workflow #98

Workflow file for this run

name: Build and Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Check out repository $GITHUB_WORKSPACE
- name: Checkout Repo
uses: actions/checkout@v2
- name: setup yarn
uses: actions/setup-node@v2
with:
node-version: '14.17.3'
cache: 'yarn'
- run: yarn install
- name: build
run: yarn build
- name: test
#TODO Remove this when we have tests
run: yarn test --passWithNoTests