mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -08:00
17 lines
302 B
YAML
17 lines
302 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
|
|
- run: yarn run build
|