Skip to content

Commit

Permalink
Merge branch 'develop' into feat/new-customized-assets
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsupa597 authored Jun 29, 2023
2 parents aacedfb + 9615e02 commit 84cd591
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/check-code-style.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Check Code Style

on:
push:
pull_request:

jobs:
default:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "yarn"

- name: Restore
uses: actions/cache@v3
with:
path: |
node_modules
*/*/node_modules
key: 2022-05-07-${{ runner.os }}-${{ hashFiles('**/yarn.lock')}}

- name: Bootstrap
run: |
yarn
- name: Changed Files
id: changed-files
uses: tj-actions/changed-files@v37

- name: Prettier Check
run: |
yarn prettier --check ${{ steps.changed-files.outputs.all_changed_files }}

0 comments on commit 84cd591

Please sign in to comment.