feat(GLTFImporter): add GLTFImporter #2857
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: PR Checks | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
pr-checks: | |
runs-on: ubuntu-20.04 | |
name: Check and lint PR | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # needed so commitlint can lint the commits | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- name: Enforce code style | |
run: npm run validate | |
- name: Lint commits | |
if: github.event_name != 'merge_group' | |
run: npx commitlint --from=${{ github.event.pull_request.base.sha }} | |
- name: Tests must not use test.only | |
run: bash .github/workflows/test-only-check.sh | |
- name: API docs should generate without error | |
run: npm run doc:generate-api |