Skip to content

chore: prettier CHANGELOG.md #188

chore: prettier CHANGELOG.md

chore: prettier CHANGELOG.md #188

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
name: '${{matrix.platform}} w/ Node.js ${{matrix.node}}.x'
runs-on: ${{matrix.platform}}
strategy:
fail-fast: false
matrix:
node:
- 14
- 16
- 18
- 19
platform:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run tests
run: yarn test:jest