Skip to content

Merge pull request #24 from IABTechLab/ajy-UID2-1490-Redirect-euid-pr… #91

Merge pull request #24 from IABTechLab/ajy-UID2-1490-Redirect-euid-pr…

Merge pull request #24 from IABTechLab/ajy-UID2-1490-Redirect-euid-pr… #91

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