This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
51 lines (49 loc) · 1.83 KB
/
cf.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
40
41
42
43
44
45
46
47
48
49
50
51
name: CF
on:
pull_request:
types: [ready_for_review, synchronize, opened]
jobs:
prettier:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
concurrency:
group: ${{ github.head_ref }}-prettier
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache pnpm modules
uses: actions/cache@v2
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 5.18.1
- name: Install Rush
run: pnpm install -g @microsoft/rush
- name: Install dependencies
run: node common/scripts/install-run-rush.js install
- name: Install ts-morph
run: pnpm install --frozen-lockfile
- name: Update manifests
run: sh scripts/update-manifests.sh
- name: Lint
run: rush lint
- name: Format
run: rush prettier
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: resolve style guide violations"