-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (64 loc) · 2.61 KB
/
zxc-lint-snap.yaml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: "ZXC: ESLint Snap"
on:
workflow_call:
inputs:
snap-package-dir:
description: "The directory of the snap package to lint:"
type: string
required: true
custom-job-label:
description: "Custom Job Label:"
type: string
required: false
default: "Lint"
defaults:
run:
shell: bash
permissions:
contents: read
env:
PROJECT_DIRECTORY: packages/${{ inputs.snap-package-dir }}
SNAP_DIRECTORY: packages/${{ inputs.snap-package-dir }}/packages/snap
jobs:
eslint:
name: ${{ inputs.custom-job-label || 'ESLint' }}
runs-on: smart-contracts-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
disable-sudo: true
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 18
- name: Setup Yarn
run: npm install -g corepack && corepack enable
- name: Yarn Cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: ${{ env.PROJECT_DIRECTORY }}/.yarn/cache
key: yarn-cache-${{ runner.os }}-${{ runner.arch }}-${{ inputs.snap-package-dir }}-${{ hashFiles(format('packages/{0}/yarn.lock', inputs.snap-package-dir)) }}
restore-keys: |
yarn-cache-${{ runner.os }}-${{ runner.arch }}-${{ inputs.snap-package-dir }}-
yarn-cache-${{ runner.os }}-${{ inputs.snap-package-dir }}-
- name: Node Modules Cache
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: |
${{ env.PROJECT_DIRECTORY }}/node_modules
${{ env.PROJECT_DIRECTORY }}/packages/snap/node_modules
${{ env.PROJECT_DIRECTORY }}/packages/site/node_modules
key: node-modules-cache-${{ runner.os }}-${{ runner.arch }}-${{ inputs.snap-package-dir }}-${{ hashFiles(format('packages/{0}/yarn.lock', inputs.snap-package-dir)) }}
restore-keys: |
node-modules-cache-${{ runner.os }}-${{ runner.arch }}-${{ inputs.snap-package-dir }}-
node-modules-cache-${{ runner.os }}-${{ inputs.snap-package-dir }}-
- name: Install Snap Dependencies
working-directory: ${{ env.PROJECT_DIRECTORY }}
run: yarn install
- name: Check Snap Formatting
working-directory: ${{ env.SNAP_DIRECTORY }}
run: yarn lint