Skip to content

Merge branch 'main' of https://github.com/simosathan9/blockly_unix #55

Merge branch 'main' of https://github.com/simosathan9/blockly_unix

Merge branch 'main' of https://github.com/simosathan9/blockly_unix #55

Workflow file for this run

name: Code Formatting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check code formatting
run: npm run format-check