Added templates #1
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: Schema Checks | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
check-files: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Bun | |
run: curl -fsSL https://bun.sh/install | bash | |
- name: Add Bun to PATH | |
run: echo "$HOME/.bun/bin" >> $GITHUB_PATH | |
- name: Run checks | |
run: bun run .github/scripts/check.js |