Skip to content

0.13.0

0.13.0 #102

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
test:
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node_version:
- 16
- 18
- lts/*
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: npm
# Install `yarn` to be used in e2e tests.
- run: npm install --global yarn;
- run: npm ci;
- run: npm test;