forked from code100x/daily-code
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 878 Bytes
/
lint_commit.yml
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
name: CommitLint, Linting and formatting
on:
pull_request:
branches:
- '**'
jobs:
Continuous-Integration:
name: Performs linting, formatting on the application
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache Yarn dependencies
uses: actions/cache@v2
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Yarn and Dependencies
run: yarn install --frozen-lockfile
- name: Print versions
run: |
git --version
yarn --version
- name: Run linting check
run: yarn run lint
- name: Check formatting
run: yarn run format