Skip to content

Commit

Permalink
Fixes prettier checks
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotny committed May 9, 2024
1 parent f2c1b5b commit dc6db64
Show file tree
Hide file tree
Showing 4 changed files with 691 additions and 20 deletions.
37 changes: 21 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
name: "Check Prettier Formatting"

name: test
on: pull_request

jobs:
prettier-check:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
- name: Cancel running workflows
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout repo
uses: actions/checkout@v4
- name: Set node version
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "npm"

- name: Install Prettier
run: npm install --save-dev prettier

- name: Check formatting
run: npx prettier --check .
node-version-file: ".nvmrc"
- name: Cache node_modules
id: node-modules-cache
uses: actions/cache@v3
with:
path: "**/node_modules"
key: node-modules-cache-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Run tests
run: npm test
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
Loading

0 comments on commit dc6db64

Please sign in to comment.