Skip to content

Create MIT LICENSE

Create MIT LICENSE #21

Workflow file for this run

name: Code Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
name: Code Format
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- name: Install Node.js dependencies
run: npm ci
- name: Code Format
run: npm run format:check:all