Skip to content

Switch from CollaboratorDB to the new gypsum backend. #36

Switch from CollaboratorDB to the new gypsum backend.

Switch from CollaboratorDB to the new gypsum backend. #36

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Run tests
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Restore the node modules
uses: actions/cache@v4
with:
path: '**/node_modules'
key: modules-${{ hashFiles('**/package.json') }}
- name: Restore the files
uses: actions/cache@v4
with:
path: '**/files'
key: files-${{ hashFiles('**/package.json') }}
- name: Install packages
run: npm i --include-dev
- name: Run tests
run: npm run test