Skip to content

feat(synchronizer): add synchronizer query to fetch all validation needed data #185

feat(synchronizer): add synchronizer query to fetch all validation needed data

feat(synchronizer): add synchronizer query to fetch all validation needed data #185

Workflow file for this run

name: Test and Build
on:
pull_request:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install Dependencies
run: npm ci
- name: Test
run: npm run test
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build