Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Merge pull request #16 from plone/introducesupportviews #94

Merge pull request #16 from plone/introducesupportviews

Merge pull request #16 from plone/introducesupportviews #94

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
unit:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
# node setup
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
# node install
- run: yarn
# node test
- run: yarn test