CI: fix lint job

This commit is contained in:
Alexander Zobnin
2022-09-01 14:05:47 +03:00
parent 7a27945798
commit 5bfd306462

View File

@@ -71,7 +71,6 @@ jobs:
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)" run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn cache - name: Cache yarn cache
uses: actions/cache@v2 uses: actions/cache@v2
id: cache-yarn-cache id: cache-yarn-cache
@@ -113,6 +112,29 @@ jobs:
with: with:
go-version: "1.17" go-version: "1.17"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn cache
uses: actions/cache@v2
id: cache-yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-nodemodules-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install golint - name: Install golint
run: GO111MODULE=off go get -u golang.org/x/lint/golint run: GO111MODULE=off go get -u golang.org/x/lint/golint