From ea5c268959ab09d808c95aa79f3da2194340e909 Mon Sep 17 00:00:00 2001 From: Casi Newell <19928431+CassandraNewell@users.noreply.github.com> Date: Wed, 24 Jul 2024 09:23:49 +0200 Subject: [PATCH] update CI and README --- .github/workflows/lint-and-build.yml | 9 +++------ README.md | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint-and-build.yml b/.github/workflows/lint-and-build.yml index be4296f..2203ee1 100644 --- a/.github/workflows/lint-and-build.yml +++ b/.github/workflows/lint-and-build.yml @@ -10,12 +10,12 @@ jobs: lint_and_test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install asdf & tools - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 - name: asdf cache id: asdf-cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.asdf/ key: ${{ runner.os }}-${{ hashFiles('**/.tool-versions') }} @@ -35,9 +35,6 @@ jobs: - name: Install dependencies run: pnpm install --frozen-lockfile if: steps.npm_cache.outputs.cache-hit != 'true' - - name: Install dependencies - run: pnpm install --frozen-lockfile - if: steps.npm_cache.outputs.cache-hit != 'true' - name: lint run: pnpm --dir apps/gatsby lint - name: build diff --git a/README.md b/README.md index a6a25d3..a5b5d21 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ ## Installation ```bash -yarn install +pnpm install ``` ## Running ```bash -yarn run develop +pnpm develop:gatsby ```