patch version bump #214
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: Validate schemas | |
on: | |
push: | |
branches: [ main ] | |
pull_request: { } | |
concurrency: ${{ github.ref }} | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🧮 Checkout code | |
uses: actions/checkout@v3 | |
- name: 🔧 Set up node environment | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
- name: 🗜️ Set up python environment | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: 🔨 Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: 🛠️ Setup | |
run: "./scripts/setup.sh" | |
- name: 📕 Validate | |
run: yarn build | |
- run: git diff --exit-code | |
- name: 📕 Validate TS | |
run: yarn build:ts | |
- name: 📕 Validate HTML | |
run: yarn build:html |