Skip to content

refactor(ui) & feat(blockly): Rework UI and add dynamic inputs #53

refactor(ui) & feat(blockly): Rework UI and add dynamic inputs

refactor(ui) & feat(blockly): Rework UI and add dynamic inputs #53

Workflow file for this run

# 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