Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(infra): convert to yarn instead of npm #93

Merged
merged 2 commits into from
Apr 23, 2021
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
node-version: "${{ matrix.node_version }}"
}
},
{ run: "npm ci" },
{ run: "npm run build" },
{ run: "npm run lint" },
{ run: "npm run prettier" },
{ run: "npm test" },
{ run: "yarn --frozen-lockfile" },
{ run: "yarn build" },
{ run: "yarn lint" },
{ run: "yarn prettier" },
{ run: "yarn test" },
],
env: {
CI: true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you spot a bug or want a feature, please feel free to file an issue. If you w

We use [docsify](https://docsify.js.org) to build our site, and [Github pages](https://pages.github.com/) to deploy it. To run the documentation site locally, simply run:
```shell
$ npm run serve-docs
$ yarn serve-docs
```

Any changes you make to files in the `docs/` directory will cause the server to automatically reload the page.
Loading