Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
## Installation

```bash
yarn install
pnpm install
```

## Running

```bash
yarn run develop
pnpm develop:gatsby
```