Skip to content

fix: escape table name passed to the API (#452) #361

fix: escape table name passed to the API (#452)

fix: escape table name passed to the API (#452) #361

Workflow file for this run

---
name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
name: Test and lint
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: npm install
run: npm i
- name: build
run: npm run build
- name: Unittesting
run: npm run test
- name: Linting
run: npm run lint