Skip to content

Commit

Permalink
Oops, also swap yarn here.
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Jul 10, 2024
1 parent b2009c3 commit 8f7d87d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ jobs:
- name: Install dependencies
run: |
cd ./frontend
yarn install
npm install
- name: Test with vitest
run: |
cd ./frontend && yarn test --run
cd ./frontend && npm run test -- --run
12 changes: 6 additions & 6 deletions frontend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ Copy the [.env.example](.env.example) as `.env`.
Then simply run:

```bash
yarn install
npm install
```

### Compiles and hot-reloads for development

```bash
yarn run serve
npm run serve
```

### Compiles and minifies for production

```bash
yarn run build
npm run build
```

### Post-CSS
Expand All @@ -42,14 +42,14 @@ We use post-css to enhance our css. Any post-css that isn't in a SFC must be in
Frontend is formatted using ESlint with airbnb rules.

```bash
yarn run lint
yarn run lint --fix
npm run lint
npm run lint -- --fix
```

### Run tests

```bash
yarn run test
npm run test
```

### Customize configuration
Expand Down

0 comments on commit 8f7d87d

Please sign in to comment.