Skip to content

docs: change license to GPL-3.0-or-later #12

docs: change license to GPL-3.0-or-later

docs: change license to GPL-3.0-or-later #12

Workflow file for this run

name: Lint Check
on:
workflow_dispatch:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Lint Check
run: |
npm run lint
- name: Prettier Format Check
run: |
npm run format:check