mirror of
https://github.com/remko/waforth
synced 2024-12-27 09:59:29 +01:00
17 lines
295 B
YAML
17 lines
295 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./.github/actions/setup
|
|
- run: yarnpkg build
|
|
- run: yarnpkg lint
|
|
- run: yarnpkg test --coverage
|