Skip to content

chore: remove SAP registry from readme #13

chore: remove SAP registry from readme

chore: remove SAP registry from readme #13

Workflow file for this run

name: Unit Test(macOS)
on:
pull_request:
branches: [master]
jobs:
ut-mac:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [macos-latest] # macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 25
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install yarn -g
- name: Install Dependencies
run: yarn install
- name: Test
run: yarn run test