Skip to content

fix(api): allow dataset attributes in sanitization config #466

fix(api): allow dataset attributes in sanitization config

fix(api): allow dataset attributes in sanitization config #466

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.JS
uses: actions/setup-node@v3
with:
node-version: 'lts/Hydrogen'
- name: Install dependencies and generate Prisma types
run: |
npm install --legacy-peer-deps
npm run generate
- name: Build and lint
run: |
npm run build
npm run lint
- name: Run tests
run: npm run test