We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24824c7 commit 3e3c2d3Copy full SHA for 3e3c2d3
.github/workflows/pr-open-check.yml
@@ -12,14 +12,17 @@ jobs:
12
- uses: actions/checkout@v2
13
with:
14
fetch-depth: 0
15
+
16
- uses: wagoid/commitlint-github-action@v4
17
18
- uses: actions/setup-node@v2
19
20
node-version: '18'
21
check-latest: true
22
23
- name: Get yarn cache directory path
24
id: yarn-cache-dir-path
- run: echo "::set-output name=dir::$(yarn cache dir)"
25
+ run: echo "dir=$(yarn cache dir)" >> $GITHUB_ENV
26
27
- uses: actions/cache@v4
28
@@ -29,7 +32,7 @@ jobs:
29
32
- name: Install dependencies
30
33
if: steps.yarn-cache.outputs.cache-hit != 'true'
31
34
run: yarn
-
35
36
- name: Run Lint
37
run: yarn lint-md
38
0 commit comments