Skip to content

Merge pull request #25 from IABTechLab/release-1.3.0 #94

Merge pull request #25 from IABTechLab/release-1.3.0

Merge pull request #25 from IABTechLab/release-1.3.0 #94

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