refactor(ui) & feat(blockly): Rework UI and add dynamic inputs #53
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
# Workflow will run on pull requests | |
name: Pull Request Test | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
name: Run ESLint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install PNPM | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check Prettier format | |
run: pnpm format:check | |
- name: Run ESLint | |
run: pnpm lint:noformat | |
# tests are not testing 😭 | |
# test: | |
# name: Run test | |
# needs: lint | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 20 | |
# - run: yarn | |
# - run: yarn test:unit |