mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-26 21:23:12 -08:00
19 lines
359 B
YAML
19 lines
359 B
YAML
|
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
|