Skip to content

Addition of Lastpost file #55

Addition of Lastpost file

Addition of Lastpost file #55

Workflow file for this run

name: Code Format
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
codeFormat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Run ESLint
run: npx eslint .
- name: Run Prettier
run: npx prettier --check .