Skip to content

perf: micro optimizations #12

perf: micro optimizations

perf: micro optimizations #12

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- run: npm i
- run: npm run test
env:
CI: true