Skip to content

CI: fix: precommit hook interfaring each other #5

CI: fix: precommit hook interfaring each other

CI: fix: precommit hook interfaring each other #5

Workflow file for this run

name: Precommit Code Check
on:
pull_request:
branches:
- master
- develop
- staging
push:
branches:
- "*"
jobs:
precommit:
name: Code Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 19.x
uses: actions/setup-node@v1
with:
node-version: 19.x
- name: Install dependencies
run: |
npm install -D tailwindcss postcss autoprefixer concurrently
npm install -D prettier prettier-plugin-tailwindcss
- name: Cache node_modules
uses: actions/cache@v2
with:
path: ./node_modules
key: ${{ runner.os }}-precommit
restore-keys: |
${{ runner.os }}-precommit
- name: Set up Python 3.9.17
uses: actions/setup-python@v2
with:
python-version: 3.9.17
- name: Check Version
run: python --version
- name: PreCommit
uses: pre-commit/[email protected]