Skip to content

fix(notebook): More specific error in query inspector (#72) #100

fix(notebook): More specific error in query inspector (#72)

fix(notebook): More specific error in query inspector (#72) #100

Workflow file for this run

name: Push to main
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Need history to generate changelog
token: ${{ secrets.CI_GITHUB_TOKEN }}
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test:ci
- run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}