init for badges schema #128
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: CI test | |
on: | |
# Triggers the workflow on push or pull request events | |
- pull_request | |
- push | |
# Allows you to run this workflow manually from the Actions tab | |
- workflow_dispatch | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run typecheck | |
test: | |
runs-on: ubuntu-latest | |
services: | |
rumors-test-db: | |
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.3.2 | |
ports: | |
- 62223:9200 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
- run: npm ci | |
- name: Test if schema loads | |
run: npm run test | |
env: | |
ELASTICSEARCH_URL: http://localhost:62223 | |
- name: Test if examples load | |
run: npm run seed | |
env: | |
ELASTICSEARCH_URL: http://localhost:62223 | |
- name: Test if examples match zod schema | |
run: npm run scan | |
env: | |
ELASTICSEARCH_URL: http://localhost:62223 | |