meshtastic/.github/workflows/pr.yml

20 lines
405 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:
node-version: 14
- run: npm install -g yarn
2021-05-03 16:42:23 -07:00
working-directory: website
- run: yarn install
- run: yarn run build
working-directory: website