Skip to content

Commit

Permalink
Merge pull request #3 from Cophr/chore/yarn-ignore
Browse files Browse the repository at this point in the history
chore: ignore yarn files and change README.md
  • Loading branch information
ohfreeya authored Feb 12, 2023
2 parents 44ff011 + de50c63 commit 02ddc72
Show file tree
Hide file tree
Showing 4 changed files with 8,509 additions and 5,926 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ jobs:
node-version: 16
cache: "yarn"

- name: Upgrade yarn
run: yarn set version stable

- name: Install Dependencies
run: yarn install --frozen-lockfile

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# compiled output
/dist
/node_modules
/.yarn
.yarnrc.yml

# Logs
logs
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,33 +29,33 @@
## Installation

```bash
$ npm install
$ yarn install
```

## Running the app

```bash
# development
$ npm run start
$ yarn start

# watch mode
$ npm run start:dev
$ yarn start:dev

# production mode
$ npm run start:prod
$ yarn start:prod
```

## Test

```bash
# unit tests
$ npm run test
$ yarn test

# e2e tests
$ npm run test:e2e
$ yarn test:e2e

# test coverage
$ npm run test:cov
$ yarn test:cov
```

## Support
Expand Down
Loading

0 comments on commit 02ddc72

Please sign in to comment.