forked from learningequality/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (52 loc) · 1.26 KB
/
pre-commit.yml
File metadata and controls
54 lines (52 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Linting
on:
push:
branches:
- unstable
- hotfixes
- master
pull_request:
branches:
- unstable
- hotfixes
- master
jobs:
pre_job:
name: Path match check
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ github.token }}
paths_ignore: '["**.po", "**.json"]'
linting:
name: All file linting
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: '3.10'
ignore-nothing-to-cache: 'true'
- name: Use pnpm
uses: pnpm/action-setup@v5
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
pnpm rebuild node-sass
- uses: pre-commit/action@v3.0.1
- name: Run pre-commit-ci-lite
uses: pre-commit-ci/lite-action@v1.1.0
if: always()