mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 15:44:18 -08:00
19 lines
372 B
YAML
19 lines
372 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: 16
|
|
- run: yarn install
|
|
working-directory: website
|
|
- run: yarn run build
|
|
working-directory: website
|