Skip to content

chore: added dvc js client sdk #24

chore: added dvc js client sdk

chore: added dvc js client sdk #24

Workflow file for this run

name: Unit and Integration Tests
on:
pull_request:
types: [opened, edited, reopened, synchronize]
branches:
- main
merge_group:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
name: Test
runs-on: windows-latest
env:
DISPLAY: ':99.0'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable && yarn install
- name: Lint Project
run: yarn lint
- name: Test Project
run: yarn test