feat: add ability to construct "count" queries #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: semantic-layer | |
on: [push] | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
jobs: | |
docker: | |
name: π Setup Docker | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
dependencies: | |
name: π¦ Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- run: npm ci | |
lint: | |
name: π¬ Lint & Format | |
runs-on: ubuntu-latest | |
needs: [dependencies] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- run: npm ci | |
- name: π¬ Lint & Format | |
run: npm run lint:check | |
audit: | |
name: π‘οΈ Audit | |
runs-on: ubuntu-latest | |
needs: [dependencies] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- name: π‘οΈ Audit | |
run: npm audit --audit-level=high | |
spell: | |
name: πΈ Spellcheck | |
runs-on: ubuntu-latest | |
needs: [dependencies] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- run: npm ci | |
- name: πΈ Spellcheck | |
run: npm run spell:check | |
type: | |
name: Κ¦ Typecheck | |
runs-on: ubuntu-latest | |
needs: [dependencies] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- run: npm ci | |
- name: Κ¦ Typecheck | |
run: npm run type:check | |
test: | |
name: β‘ Tests | |
runs-on: ubuntu-latest | |
needs: [docker, dependencies] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- run: npm ci | |
- name: β‘ Tests | |
run: npm run test:coverage | |
build-and-release: | |
name: π Build & release | |
needs: [lint, audit, spell, type, test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "npm" | |
- run: npm ci | |
- name: π¨ Build | |
run: npm run build | |
- name: π Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npm run semantic-release |