add new worker property #1280
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 | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened, ready_for_review, synchronize] | |
jobs: | |
check-is-built: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: yarn install | |
run: yarn install | |
- name: yarn build | |
run: yarn build | |
- name: git status is clean | |
shell: bash | |
run: | | |
[ -z "$(git status --porcelain)" ] | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: yarn install | |
run: yarn install | |
- name: format all files | |
run: yarn format | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: yarn install | |
run: yarn install | |
- name: validate script integration tests | |
run: node scripts/validate.integration-tests.mjs | |
- name: validate schemas | |
run: yarn validate |