Skip to content

Merge pull request #115 from Holo-Host/feature/distinguish-kyc-levels #299

Merge pull request #115 from Holo-Host/feature/distinguish-kyc-levels

Merge pull request #115 from Holo-Host/feature/distinguish-kyc-levels #299

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
env:
VITE_HPOS_PORT: 4567
strategy:
matrix:
node-version: [16.x, 17.x, 18.x]
steps:
- name: 🦴 Fetch source code
uses: actions/checkout@v3
with:
submodules: recursive
- name: 🫁 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: 🦾 Install node-modules
run: yarn install
- name: 👀 Run tests
run: yarn test