From e19c32aa5d7670cfe2187ed67c7fa90a786e8b51 Mon Sep 17 00:00:00 2001 From: himself65 Date: Tue, 28 Mar 2023 12:48:40 -0500 Subject: [PATCH] ci: boost up next build time --- .github/workflows/build-master.yml | 19 +++++++++++++++++++ .github/workflows/build.yml | 23 +++++++++++++++++++---- 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-master.yml b/.github/workflows/build-master.yml index 9b96405680..e3b5233450 100644 --- a/.github/workflows/build-master.yml +++ b/.github/workflows/build-master.yml @@ -5,6 +5,17 @@ on: branches: [master] jobs: + lint: + name: Lint + runs-on: ubuntu-latest + environment: development + + steps: + - uses: actions/checkout@v3 + - name: Setup Node.js + uses: ./.github/actions/setup-node + - run: yarn lint --max-warnings=0 + build-frontend: name: Build frontend runs-on: ubuntu-latest @@ -14,6 +25,14 @@ jobs: - uses: actions/checkout@v3 - name: Setup Node.js uses: ./.github/actions/setup-node + - name: Cache Next.js + uses: actions/cache@v3 + with: + path: | + ${{ github.workspace }}/apps/web/.next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} + restore-keys: | + ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}- - name: Build run: yarn build diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3645372a3..99ed8912a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,6 +6,17 @@ on: - master jobs: + lint: + name: Lint + runs-on: ubuntu-latest + environment: development + + steps: + - uses: actions/checkout@v3 + - name: Setup Node.js + uses: ./.github/actions/setup-node + - run: yarn lint --max-warnings=0 + build: name: Build on Pull Request runs-on: ubuntu-latest @@ -15,7 +26,14 @@ jobs: - uses: actions/checkout@v3 - name: Setup Node.js uses: ./.github/actions/setup-node - - run: yarn lint --max-warnings=0 + - name: Cache Next.js + uses: actions/cache@v3 + with: + path: | + ${{ github.workspace }}/apps/web/.next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} + restore-keys: | + ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}- - name: Build run: yarn build env: @@ -27,9 +45,6 @@ jobs: NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }} NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID }} - - name: Export - run: yarn export - - name: Upload artifact uses: actions/upload-artifact@v3 with: