chore: release v5.21.0 #7480
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: Check | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
check: | |
name: Format, Schema, and Examples | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_PAT || github.token }} | |
ref: ${{ github.ref }} | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version: 20 | |
- name: Install Node dependencies | |
run: yarn --frozen-lockfile | |
- name: Setup data | |
run: yarn data | |
- name: Install Parallel | |
run: | | |
# Faster than "sudo apt-get install parallel" | |
wget https://raw.githubusercontent.com/martinda/gnu-parallel/master/src/parallel | |
chmod +x parallel | |
cp parallel sem | |
sudo mv parallel sem /usr/local/bin | |
- name: Format | |
run: yarn format | |
- name: Build Schema | |
run: yarn schema | |
- name: Check Schema | |
run: scripts/check-schema.sh | |
- name: Setup Git remote | |
run: scripts/setup-git-ci.sh | |
- name: Check and Commit | |
run: scripts/check-and-commit.sh |