mirror of
https://github.com/remko/waforth
synced 2025-01-16 15:41:07 +01:00
20 lines
401 B
YAML
20 lines
401 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
cache: 'yarn'
|
|
- run: sudo apt-get install wabt
|
|
- run: yarnpkg --pure-lockfile
|
|
- run: yarnpkg build
|
|
- run: yarnpkg lint
|
|
- run: yarnpkg test --coverage
|