waforth/.github/workflows/build.yml

19 lines
333 B
YAML
Raw Normal View History

2022-04-13 17:02:46 +02:00
name: Build
on:
push:
pull_request:
2022-04-13 17:02:46 +02:00
workflow_dispatch:
2022-05-07 09:03:03 +02:00
workflow_call:
2022-04-13 17:02:46 +02:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-05-07 09:03:03 +02:00
- uses: ./.github/actions/setup
2022-04-13 17:02:46 +02:00
- run: yarnpkg build
2022-11-20 09:20:35 +01:00
- run: make -C src/web/notebook
2022-04-13 17:02:46 +02:00
- run: yarnpkg lint
- run: yarnpkg test --coverage