feat: add rigging info to blender doc #104
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 🚀 | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: package.json | |
cache: 'yarn' | |
- name: Install deps | |
run: yarn install --frozen-lockfile --immutable | |
- name: Tests | |
run: yarn coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Code styles | |
run: yarn lint | |
- name: Formatting | |
run: yarn prettier --check . | |
- name: Typecheck | |
run: yarn typecheck | |
- name: Build | |
run: yarn build | |
env: | |
NODE_ENV: production | |
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |