Skip to content

Commit

Permalink
Create format-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring authored Nov 22, 2023
1 parent 4aa5487 commit 1dcc421
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# ESLint is a tool for identifying and reporting on patterns
# found in ECMAScript/JavaScript code.
# More details at https://github.com/eslint/eslint
# and https://eslint.org

name: Check formatting

on: push

jobs:
check-formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- run: |
npm install --dev
- run: |
npm run format-check

0 comments on commit 1dcc421

Please sign in to comment.