Skip to content

test: fixtures for unit testing QueryEditors (#10) #40

test: fixtures for unit testing QueryEditors (#10)

test: fixtures for unit testing QueryEditors (#10) #40

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: '18'
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 }}