Skip to content

Commit

Permalink
build: use yarn run ci
Browse files Browse the repository at this point in the history
  • Loading branch information
why520crazy authored Jul 8, 2021
1 parent 2e6b819 commit 09f9348
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: 14.x

- name: Setup
run: npm ci
run: yarn --frozen-lockfile

- name: Test
run: |
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
npm run report-coverage
yarn test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
yarn run report-coverage
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,18 @@ npm install @tethys/store --save
yarn add @tethys/store
```

##
## Development
```base
$ git clone https://github.com/tethys-org/store
$ cd store && yarn
$ yarn start:docs // open http://localhost:8887
```

## Release & Publish

```
yarn release
yarn pub
```

0 comments on commit 09f9348

Please sign in to comment.