fix: precommit #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 yarn | |
working-directory: ./src/frontend/ | |
run: npm install -g yarn | |
- name: Cache node_modules | |
uses: actions/cache@v2 | |
with: | |
path: ./src/frontend/node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install dependencies | |
working-directory: ./src/frontend/ | |
run: yarn | |
- 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] |