fix: move prepare to each job
This commit is contained in:
parent
1d6e892596
commit
3edabaddf9
48
.github/workflows/lint.yml
vendored
48
.github/workflows/lint.yml
vendored
@ -3,9 +3,9 @@ name: lint-and-check
|
|||||||
on: [ pull_request,push]
|
on: [ pull_request,push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
prepare:
|
cli-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Prepare
|
name: CLI Check
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@ -15,25 +15,21 @@ jobs:
|
|||||||
node-version: "20"
|
node-version: "20"
|
||||||
cache: ${{ steps.detect-package-manager.outputs.manager }}
|
cache: ${{ steps.detect-package-manager.outputs.manager }}
|
||||||
- name: Enable Corepack
|
- name: Enable Corepack
|
||||||
id: enable-corepack
|
|
||||||
run: |
|
run: |
|
||||||
corepack enable
|
corepack enable
|
||||||
|
- name: Get yarn cache directory path
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
||||||
- name: Restore cache
|
- name: Restore cache
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
.next/cache
|
key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }}
|
||||||
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
|
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
|
${{ runner.os }}-ui-
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install
|
run: |
|
||||||
|
yarn install
|
||||||
cli-check:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: prepare
|
|
||||||
name: CLI Check
|
|
||||||
steps:
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: yarn cli lint
|
run: yarn cli lint
|
||||||
- name: Build
|
- name: Build
|
||||||
@ -41,9 +37,31 @@ jobs:
|
|||||||
|
|
||||||
component-check:
|
component-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: prepare
|
|
||||||
name: Component Check
|
name: Component Check
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "20"
|
||||||
|
cache: ${{ steps.detect-package-manager.outputs.manager }}
|
||||||
|
- name: Enable Corepack
|
||||||
|
run: |
|
||||||
|
corepack enable
|
||||||
|
- name: Get yarn cache directory path
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
||||||
|
- name: Restore cache
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-ui-
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
yarn install
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: yarn react lint
|
run: yarn react lint
|
||||||
- name: TypeScript Compile
|
- name: TypeScript Compile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user