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 ```