Skip to content

Merge pull request #26 from Fdawgs/patch-1 #42

Merge pull request #26 from Fdawgs/patch-1

Merge pull request #26 from Fdawgs/patch-1 #42

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16, 18, 20]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
yarn install
- name: Tests
run: |
yarn test