From 02fd6e90bcf6b7da49b3fad85ed780a99907bfa0 Mon Sep 17 00:00:00 2001 From: Danny Guo Date: Thu, 22 Feb 2024 22:32:28 -0500 Subject: [PATCH] Upgrade Actions --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f4715d8..de8312a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,14 +11,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version-file: ".tool-versions" - name: Get the Yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -30,8 +30,8 @@ jobs: run: yarn run format:check # - name: Lint the code # run: yarn run lint - - name: Export the website - run: yarn run export + - name: Build the website + run: yarn run build - name: Run Lighthouse run: npx --package=@lhci/cli lhci autorun env: