meshtastic/.github/workflows/pr.yml

19 lines
372 B
YAML
Raw Normal View History

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:
2021-05-26 19:20:21 -07:00
node-version: 16
2021-05-03 16:42:23 -07:00
- run: yarn install
2021-05-26 19:20:21 -07:00
working-directory: website
2021-05-03 16:42:23 -07:00
- run: yarn run build
working-directory: website