Skip to content

chore: release v1.7.2 #94

chore: release v1.7.2

chore: release v1.7.2 #94

Workflow file for this run

name: Build & Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Set node version to ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: "pnpm"
- name: Install
run: pnpm i
- name: Unit Tests
run: pnpm run test
env:
CI: true
- name: Typing Declaration Tests
run: pnpm run test:dts
env:
CI: true