snort/.github/workflows/formatting.yaml

19 lines
410 B
YAML
Raw Normal View History

2023-02-09 10:28:42 +00:00
name: Formatting
2023-02-08 20:11:03 +00:00
on:
pull_request:
jobs:
formatting:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
2023-02-09 10:28:42 +00:00
with:
node-version: 16
2023-02-08 20:11:03 +00:00
- name: Install Dependencies
2023-02-09 12:32:19 +00:00
run: yarn install
2023-02-08 20:11:03 +00:00
- name: Check Formatting
2023-02-09 10:28:42 +00:00
run: yarn prettier --check .