Skip to content

docs: discord invite #11

docs: discord invite

docs: discord invite #11

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