mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-11 05:47:34 -08:00
Add PR checking action, update Docusaurus
This commit is contained in:
parent
9fcfde6ccb
commit
3c75438c41
18
.github/workflows/pr.yml
vendored
Normal file
18
.github/workflows/pr.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Pull Request
|
||||||
|
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- uses: actions/setup-node@v2-beta
|
||||||
|
with:
|
||||||
|
node-version: 14
|
||||||
|
- run: npm install -g yarn
|
||||||
|
- run: cd website
|
||||||
|
- run: yarn install
|
||||||
|
- run: yarn run build
|
|
@ -12,8 +12,8 @@
|
||||||
"clear": "docusaurus clear"
|
"clear": "docusaurus clear"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@docusaurus/core": "^2.0.0-alpha.72",
|
"@docusaurus/core": "^2.0.0-alpha.74",
|
||||||
"@docusaurus/preset-classic": "^2.0.0-alpha.72",
|
"@docusaurus/preset-classic": "^2.0.0-alpha.74",
|
||||||
"@mdx-js/react": "^1.6.21",
|
"@mdx-js/react": "^1.6.21",
|
||||||
"clsx": "^1.1.1",
|
"clsx": "^1.1.1",
|
||||||
"docusaurus": "^2.0.0-alpha.378053ac5",
|
"docusaurus": "^2.0.0-alpha.378053ac5",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue