mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-11 22:07:34 -08:00
22 lines
407 B
YAML
22 lines
407 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
|
|
cp yarn install
|
|
- run: |
|
|
cd website
|
|
cp yarn run build
|