Skip to content

Commit

Permalink
ci: update config schema on push to main (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen committed Mar 21, 2024
1 parent b5fe318 commit a84abc9
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/update-schema.yml
@@ -0,0 +1,35 @@
name: update schema
on:
push:
branches:
- "main"

jobs:
schema:
strategy:
matrix:
os:
- ubuntu-latest
node:
- 20
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- run: rustup toolchain install stable --profile minimal
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- name: update schema
run: cargo run -- schema

- name: update readme
run: node scripts/update-supported-languages.mjs

- name: format
run: npx prettier --write schemas/ README.md

- uses: EndBug/add-and-commit@v9
with:
message: "chore: update config schema"

0 comments on commit a84abc9

Please sign in to comment.