Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marksverdhei committed May 27, 2023
1 parent 32d310c commit d6ef65d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Prettier Check

on:
push:
branches:
- *
pull_request:

jobs:
prettier:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14 # or another version if you prefer

- name: Install dependencies
run: npm ci

- name: Check formatting with Prettier
run: npx prettier --check src/

0 comments on commit d6ef65d

Please sign in to comment.