Skip to content

readme update

readme update #7

Workflow file for this run

name: tests
on:
push:
branches-ignore: [main]
workflow_dispatch:
jobs:
unit-tests:
strategy:
matrix:
os: ["sfdc-hk-ubuntu-latest", "sfdc-hk-windows-latest"]
node_version: [lts/-1, lts/*, latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: yarn
- run: npm install
- run: npm test